A nice moving bookshelf animation done only with css animations.
From Dribbble : https://dribbble.com/shots/2332418-Book-shelf-Loader-Icon
A Pen by Grélard Antoine on CodePen.
A nice moving bookshelf animation done only with css animations.
From Dribbble : https://dribbble.com/shots/2332418-Book-shelf-Loader-Icon
A Pen by Grélard Antoine on CodePen.
| AWSTemplateFormatVersion: 2010-09-09 | |
| Metadata: | |
| MyMeta: | |
| apple: red | |
| bannna: yellow | |
| Parameters: | |
| owner: | |
| Description: This stack owner's name | |
| Type: String | |
| Default: 'Shawn' |
| Outputs: {} | |
| AWSTemplateFormatVersion: 2010-09-09 | |
| Parameters: | |
| InstanceTypeFamily: | |
| NoEcho: 'true' | |
| Type: String | |
| Description: WebServer EC2 instance type family | |
| Default: t2 | |
| LogPublicationControl: | |
| NoEcho: 'true' |
| Outputs: {} | |
| AWSTemplateFormatVersion: 2010-09-09 | |
| Parameters: | |
| InstanceTypeFamily: | |
| NoEcho: 'true' | |
| Type: String | |
| Description: WebServer EC2 instance type family | |
| Default: t2 | |
| LogPublicationControl: | |
| NoEcho: 'true' |
| AWSTemplateFormatVersion: 2010-09-09 | |
| Description: stack description | |
| Parameters: | |
| EC2KeyPair: | |
| Description: EC2 keypair name | |
| Type: AWS::EC2::KeyPair::KeyName | |
| Default: 'EC2 tutorial' | |
| myStamp: | |
| Description: My Stamp | |
| Type: String |
| // Promise 생성기 | |
| function getPromise(msg, timeout) { | |
| return new Promise((res, rej) => { | |
| setTimeout(() => { | |
| res(msg) | |
| }, timeout || 1000) | |
| }) | |
| } | |
| // race처럼 첫 번째를 처리하고 나머지도 처리기를 붙여놓음 |