You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
@keyframes jackInTheBox { |
|
from { |
|
opacity: 0; |
|
transform: scale(0.1) rotate(30deg); |
|
transform-origin: center bottom; |
|
} |
|
|
|
50% { |
|
transform: rotate(-10deg); |
|
} |
|
|
|
70% { |
|
transform: rotate(3deg); |
|
} |
|
|
|
to { |
|
opacity: 1; |
|
transform: scale(1); |
|
} |
|
} |
|
|
|
.jackInTheBox { |
|
animation-name: jackInTheBox; |
|
}
|
|
|