mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-17 09:38:28 +01:00
Big update. Better file organisation, prefix dropping, workflow improvements.
This commit is contained in:
parent
23ba4fe9c1
commit
25448e347c
130 changed files with 3458 additions and 6819 deletions
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
.sass-cache
|
||||
node_modules/
|
||||
.DS_Store
|
58
Gruntfile.js
Normal file
58
Gruntfile.js
Normal file
|
@ -0,0 +1,58 @@
|
|||
module.exports = function(grunt) {
|
||||
pkg: grunt.file.readJSON('package.json'),
|
||||
grunt.initConfig({
|
||||
|
||||
// Concatenate CSS files
|
||||
concat: {
|
||||
dist: {
|
||||
src: [
|
||||
// _base.css required for .animated helper class
|
||||
'source/_base.css',
|
||||
'source/**/*.css'
|
||||
]
|
||||
dest: 'animate.css'
|
||||
}
|
||||
},
|
||||
|
||||
// Auto-prefix CSS properties using Can I Use?
|
||||
autoprefixer: {
|
||||
options: {
|
||||
browsers: ['last 3 versions', 'bb 10', 'android 3']
|
||||
},
|
||||
no_dest: {
|
||||
// File to output
|
||||
src: 'animate.css'
|
||||
},
|
||||
},
|
||||
|
||||
// Minify CSS
|
||||
csso: {
|
||||
dist: {
|
||||
files: {
|
||||
// Output compressed CSS to style.min.css
|
||||
'animate.min.css': ['animate.css']
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
// Watch files for changes
|
||||
watch: {
|
||||
css: {
|
||||
files: [
|
||||
'source/**/*',
|
||||
'!node_modules'
|
||||
],
|
||||
// Run Sass, autoprefixer, and CSSO
|
||||
tasks: ['concat', 'autoprefixer', 'csso'],
|
||||
}
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
// Register our tasks
|
||||
grunt.loadNpmTasks('grunt-contrib-watch');
|
||||
grunt.loadNpmTasks('grunt-contrib-concat');
|
||||
grunt.loadNpmTasks('grunt-autoprefixer');
|
||||
grunt.loadNpmTasks('grunt-csso');
|
||||
grunt.registerTask('default', ['watch']);
|
||||
};
|
119
README.md
119
README.md
|
@ -6,6 +6,12 @@
|
|||
##Usage
|
||||
To use animate.css in your website, simply drop the stylesheet into your document's `<head>`, and add the class `animated` to an element, along with any of the animation names. That's it! You've got a CSS animated element. Super!
|
||||
|
||||
```html
|
||||
<head>
|
||||
<link rel="stylesheet" href="animate.min.css">
|
||||
</head>
|
||||
```
|
||||
|
||||
You can do a whole bunch of other stuff with animate.css when you combine it with jQuery or add your own CSS rules. Dynamically add animations using jQuery with ease:
|
||||
|
||||
```javascript
|
||||
|
@ -24,95 +30,32 @@ You can change the duration of your animations, add a delay or change the number
|
|||
|
||||
*Note: be sure to replace "vendor" in the CSS with the applicable vendor prefixes (webkit, moz, ms, o)*
|
||||
|
||||
*Note: Safari in Mountion Lion (OS 10.8) has a display glitch with the Flippers. They may not appear at all until the animation is completed, or the page may have other artifacting. One fix is to add overflow: hidden to the parent div.*
|
||||
## Custom Builds
|
||||
Animate.css is powered by Grunt, and you can create custom builds pretty easily. First of all, you’ll need Grunt and all other dependencies:
|
||||
|
||||
##License
|
||||
```
|
||||
$ cd path/to/animate.css/
|
||||
$ sudo npm install
|
||||
```
|
||||
|
||||
Next, run `grunt watch` to watch for changes and compile your custom builds. For example, if you want only the “attention seekers”, simply delete them from the repository, or change `Gruntfile.js` to only concatenate the files you want:
|
||||
|
||||
```javascript
|
||||
concat: {
|
||||
dist: {
|
||||
src: [
|
||||
// _base.css required for .animated helper class
|
||||
'source/_base.css',
|
||||
'source/attention_seekers/*.css',
|
||||
'source/flippers/*.css'
|
||||
],
|
||||
dest: 'animate.css'
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
## License
|
||||
Animate.css is licensed under the MIT license. (http://opensource.org/licenses/MIT)
|
||||
|
||||
## Contributing
|
||||
Pull requests are the way to go here. I apologise in advance for the slow action on pull requests and issues. I only have two rules for submitting a pull request: match the naming convention (camelCase, categorised [fades, bounces, etc]) and let us see a demo of submitted animations in a [pen](http://codepen.io). That last one is important.
|
||||
|
||||
##Learn more
|
||||
You can learn more about animate.css over at http://daneden.me/animate
|
||||
You can also get in touch via email (dan.eden@me.com) or twitter (@_dte) if you need any help or have any issues.
|
||||
|
||||
##Cheat Sheet
|
||||
|
||||
####Attention seekers:
|
||||
flash
|
||||
bounce
|
||||
shake
|
||||
tada
|
||||
swing
|
||||
wobble
|
||||
pulse
|
||||
|
||||
####Flippers (currently Webkit, Firefox, & IE10 only):
|
||||
flip
|
||||
flipInX
|
||||
flipOutX
|
||||
flipInY
|
||||
flipOutY
|
||||
|
||||
####Fading entrances:
|
||||
fadeIn
|
||||
fadeInUp
|
||||
fadeInDown
|
||||
fadeInLeft
|
||||
fadeInRight
|
||||
fadeInUpBig
|
||||
fadeInDownBig
|
||||
fadeInLeftBig
|
||||
fadeInRightBig
|
||||
|
||||
####Fading exits:
|
||||
fadeOut
|
||||
fadeOutUp
|
||||
fadeOutDown
|
||||
fadeOutLeft
|
||||
fadeOutRight
|
||||
fadeOutUpBig
|
||||
fadeOutDownBig
|
||||
fadeOutLeftBig
|
||||
fadeOutRightBig
|
||||
|
||||
####Bouncing entrances:
|
||||
bounceIn
|
||||
bounceInDown
|
||||
bounceInUp
|
||||
bounceInLeft
|
||||
bounceInRight
|
||||
|
||||
####Bouncing exits:
|
||||
bounceOut
|
||||
bounceOutDown
|
||||
bounceOutUp
|
||||
bounceOutLeft
|
||||
bounceOutRight
|
||||
|
||||
####Rotating entrances:
|
||||
rotateIn
|
||||
rotateInDownLeft
|
||||
rotateInDownRight
|
||||
rotateInUpLeft
|
||||
rotateInUpRight
|
||||
|
||||
####Rotating exits:
|
||||
rotateOut
|
||||
rotateOutDownLeft
|
||||
rotateOutDownRight
|
||||
rotateOutUpLeft
|
||||
rotateOutUpRight
|
||||
|
||||
####Lightspeed:
|
||||
lightSpeedIn
|
||||
lightSpeedOut
|
||||
|
||||
####Specials:
|
||||
hinge
|
||||
rollIn
|
||||
rollOut
|
||||
|
||||
## Other Resources
|
||||
|
||||
- There's a [Ruby gem](https://github.com/camelmasa/animate-rails) available for Animate.css
|
||||
Pull requests are the way to go here. I apologise in advance for the slow action on pull requests and issues. I only have two rules for submitting a pull request: match the naming convention (camelCase, categorised [fades, bounces, etc]) and let us see a demo of submitted animations in a [pen](http://codepen.io). That last one is important.
|
5660
animate.css
vendored
5660
animate.css
vendored
File diff suppressed because it is too large
Load diff
2
animate.min.css
vendored
2
animate.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "animate.css",
|
||||
"version": "2.1.0",
|
||||
"version": "3.0.0",
|
||||
"main": "./animate.css"
|
||||
}
|
||||
|
|
12
package.json
Normal file
12
package.json
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"name": "animate.css",
|
||||
"version": "3.0.0",
|
||||
"devDependencies": {
|
||||
"grunt": "~0.4.1",
|
||||
"grunt-autoprefixer": "~0.4.0",
|
||||
"grunt-contrib-sass": "~0.5.0",
|
||||
"grunt-contrib-watch": "~0.5.3",
|
||||
"grunt-csso": "~0.5.0",
|
||||
"grunt-contrib-concat": "~0.3.0"
|
||||
}
|
||||
}
|
26
source/_base.css
Normal file
26
source/_base.css
Normal file
|
@ -0,0 +1,26 @@
|
|||
@charset "UTF-8";
|
||||
/*!
|
||||
Animate.css - http://daneden.me/animate
|
||||
Licensed under the MIT license
|
||||
|
||||
Copyright (c) 2013 Daniel Eden
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
body { /* Addresses a small issue in webkit: http://bit.ly/NEdoDq */
|
||||
backface-visibility: hidden;
|
||||
}
|
||||
|
||||
.animated {
|
||||
animation-duration: 1s;
|
||||
animation-fill-mode: both;
|
||||
}
|
||||
|
||||
.animated.hinge {
|
||||
animation-duration: 2s;
|
||||
}
|
9
source/attention_seekers/bounce.css
Normal file
9
source/attention_seekers/bounce.css
Normal file
|
@ -0,0 +1,9 @@
|
|||
@keyframes bounce {
|
||||
0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
|
||||
40% {transform: translateY(-30px);}
|
||||
60% {transform: translateY(-15px);}
|
||||
}
|
||||
|
||||
.bounce {
|
||||
animation-name: bounce;
|
||||
}
|
8
source/attention_seekers/flash.css
Normal file
8
source/attention_seekers/flash.css
Normal file
|
@ -0,0 +1,8 @@
|
|||
@keyframes flash {
|
||||
0%, 50%, 100% {opacity: 1;}
|
||||
25%, 75% {opacity: 0;}
|
||||
}
|
||||
|
||||
.flash {
|
||||
animation-name: flash;
|
||||
}
|
11
source/attention_seekers/pulse.css
Normal file
11
source/attention_seekers/pulse.css
Normal file
|
@ -0,0 +1,11 @@
|
|||
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
|
||||
|
||||
@keyframes pulse {
|
||||
0% { transform: scale(1); }
|
||||
50% { transform: scale(1.1); }
|
||||
100% { transform: scale(1); }
|
||||
}
|
||||
|
||||
.pulse {
|
||||
animation-name: pulse;
|
||||
}
|
9
source/attention_seekers/shake.css
Normal file
9
source/attention_seekers/shake.css
Normal file
|
@ -0,0 +1,9 @@
|
|||
@keyframes shake {
|
||||
0%, 100% {transform: translateX(0);}
|
||||
10%, 30%, 50%, 70%, 90% {transform: translateX(-10px);}
|
||||
20%, 40%, 60%, 80% {transform: translateX(10px);}
|
||||
}
|
||||
|
||||
.shake {
|
||||
animation-name: shake;
|
||||
}
|
12
source/attention_seekers/swing.css
Normal file
12
source/attention_seekers/swing.css
Normal file
|
@ -0,0 +1,12 @@
|
|||
@keyframes swing {
|
||||
20% { transform: rotate(15deg); }
|
||||
40% { transform: rotate(-10deg); }
|
||||
60% { transform: rotate(5deg); }
|
||||
80% { transform: rotate(-5deg); }
|
||||
100% { transform: rotate(0deg); }
|
||||
}
|
||||
|
||||
.swing {
|
||||
transform-origin: top center;
|
||||
animation-name: swing;
|
||||
}
|
11
source/attention_seekers/tada.css
Normal file
11
source/attention_seekers/tada.css
Normal file
|
@ -0,0 +1,11 @@
|
|||
@keyframes tada {
|
||||
0% {transform: scale(1);}
|
||||
10%, 20% {transform: scale(0.9) rotate(-3deg);}
|
||||
30%, 50%, 70%, 90% {transform: scale(1.1) rotate(3deg);}
|
||||
40%, 60%, 80% {transform: scale(1.1) rotate(-3deg);}
|
||||
100% {transform: scale(1) rotate(0);}
|
||||
}
|
||||
|
||||
.tada {
|
||||
animation-name: tada;
|
||||
}
|
15
source/attention_seekers/wobble.css
Normal file
15
source/attention_seekers/wobble.css
Normal file
|
@ -0,0 +1,15 @@
|
|||
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
|
||||
|
||||
@keyframes wobble {
|
||||
0% { transform: translateX(0%); }
|
||||
15% { transform: translateX(-25%) rotate(-5deg); }
|
||||
30% { transform: translateX(20%) rotate(3deg); }
|
||||
45% { transform: translateX(-15%) rotate(-3deg); }
|
||||
60% { transform: translateX(10%) rotate(2deg); }
|
||||
75% { transform: translateX(-5%) rotate(-1deg); }
|
||||
100% { transform: translateX(0%); }
|
||||
}
|
||||
|
||||
.wobble {
|
||||
animation-name: wobble;
|
||||
}
|
|
@ -1,29 +0,0 @@
|
|||
@-webkit-keyframes bounce {
|
||||
0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);}
|
||||
40% {-webkit-transform: translateY(-30px);}
|
||||
60% {-webkit-transform: translateY(-15px);}
|
||||
}
|
||||
|
||||
@-moz-keyframes bounce {
|
||||
0%, 20%, 50%, 80%, 100% {-moz-transform: translateY(0);}
|
||||
40% {-moz-transform: translateY(-30px);}
|
||||
60% {-moz-transform: translateY(-15px);}
|
||||
}
|
||||
|
||||
@-o-keyframes bounce {
|
||||
0%, 20%, 50%, 80%, 100% {-o-transform: translateY(0);}
|
||||
40% {-o-transform: translateY(-30px);}
|
||||
60% {-o-transform: translateY(-15px);}
|
||||
}
|
||||
@keyframes bounce {
|
||||
0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
|
||||
40% {transform: translateY(-30px);}
|
||||
60% {transform: translateY(-15px);}
|
||||
}
|
||||
|
||||
.bounce {
|
||||
-webkit-animation-name: bounce;
|
||||
-moz-animation-name: bounce;
|
||||
-o-animation-name: bounce;
|
||||
animation-name: bounce;
|
||||
}
|
|
@ -1,86 +0,0 @@
|
|||
@-webkit-keyframes bounceIn {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-webkit-transform: scale(.3);
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 1;
|
||||
-webkit-transform: scale(1.05);
|
||||
}
|
||||
|
||||
70% {
|
||||
-webkit-transform: scale(.9);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: scale(1);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes bounceIn {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-moz-transform: scale(.3);
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 1;
|
||||
-moz-transform: scale(1.05);
|
||||
}
|
||||
|
||||
70% {
|
||||
-moz-transform: scale(.9);
|
||||
}
|
||||
|
||||
100% {
|
||||
-moz-transform: scale(1);
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes bounceIn {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-o-transform: scale(.3);
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 1;
|
||||
-o-transform: scale(1.05);
|
||||
}
|
||||
|
||||
70% {
|
||||
-o-transform: scale(.9);
|
||||
}
|
||||
|
||||
100% {
|
||||
-o-transform: scale(1);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes bounceIn {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: scale(.3);
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 1;
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
70% {
|
||||
transform: scale(.9);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
|
||||
.bounceIn {
|
||||
-webkit-animation-name: bounceIn;
|
||||
-moz-animation-name: bounceIn;
|
||||
-o-animation-name: bounceIn;
|
||||
animation-name: bounceIn;
|
||||
}
|
|
@ -1,86 +0,0 @@
|
|||
@-webkit-keyframes bounceInDown {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateY(-2000px);
|
||||
}
|
||||
|
||||
60% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateY(30px);
|
||||
}
|
||||
|
||||
80% {
|
||||
-webkit-transform: translateY(-10px);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes bounceInDown {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-moz-transform: translateY(-2000px);
|
||||
}
|
||||
|
||||
60% {
|
||||
opacity: 1;
|
||||
-moz-transform: translateY(30px);
|
||||
}
|
||||
|
||||
80% {
|
||||
-moz-transform: translateY(-10px);
|
||||
}
|
||||
|
||||
100% {
|
||||
-moz-transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes bounceInDown {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-o-transform: translateY(-2000px);
|
||||
}
|
||||
|
||||
60% {
|
||||
opacity: 1;
|
||||
-o-transform: translateY(30px);
|
||||
}
|
||||
|
||||
80% {
|
||||
-o-transform: translateY(-10px);
|
||||
}
|
||||
|
||||
100% {
|
||||
-o-transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes bounceInDown {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateY(-2000px);
|
||||
}
|
||||
|
||||
60% {
|
||||
opacity: 1;
|
||||
transform: translateY(30px);
|
||||
}
|
||||
|
||||
80% {
|
||||
transform: translateY(-10px);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
.bounceInDown {
|
||||
-webkit-animation-name: bounceInDown;
|
||||
-moz-animation-name: bounceInDown;
|
||||
-o-animation-name: bounceInDown;
|
||||
animation-name: bounceInDown;
|
||||
}
|
|
@ -1,86 +0,0 @@
|
|||
@-webkit-keyframes bounceInLeft {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateX(-2000px);
|
||||
}
|
||||
|
||||
60% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateX(30px);
|
||||
}
|
||||
|
||||
80% {
|
||||
-webkit-transform: translateX(-10px);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes bounceInLeft {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-moz-transform: translateX(-2000px);
|
||||
}
|
||||
|
||||
60% {
|
||||
opacity: 1;
|
||||
-moz-transform: translateX(30px);
|
||||
}
|
||||
|
||||
80% {
|
||||
-moz-transform: translateX(-10px);
|
||||
}
|
||||
|
||||
100% {
|
||||
-moz-transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes bounceInLeft {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-o-transform: translateX(-2000px);
|
||||
}
|
||||
|
||||
60% {
|
||||
opacity: 1;
|
||||
-o-transform: translateX(30px);
|
||||
}
|
||||
|
||||
80% {
|
||||
-o-transform: translateX(-10px);
|
||||
}
|
||||
|
||||
100% {
|
||||
-o-transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes bounceInLeft {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateX(-2000px);
|
||||
}
|
||||
|
||||
60% {
|
||||
opacity: 1;
|
||||
transform: translateX(30px);
|
||||
}
|
||||
|
||||
80% {
|
||||
transform: translateX(-10px);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
.bounceInLeft {
|
||||
-webkit-animation-name: bounceInLeft;
|
||||
-moz-animation-name: bounceInLeft;
|
||||
-o-animation-name: bounceInLeft;
|
||||
animation-name: bounceInLeft;
|
||||
}
|
|
@ -1,86 +0,0 @@
|
|||
@-webkit-keyframes bounceInRight {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateX(2000px);
|
||||
}
|
||||
|
||||
60% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateX(-30px);
|
||||
}
|
||||
|
||||
80% {
|
||||
-webkit-transform: translateX(10px);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes bounceInRight {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-moz-transform: translateX(2000px);
|
||||
}
|
||||
|
||||
60% {
|
||||
opacity: 1;
|
||||
-moz-transform: translateX(-30px);
|
||||
}
|
||||
|
||||
80% {
|
||||
-moz-transform: translateX(10px);
|
||||
}
|
||||
|
||||
100% {
|
||||
-moz-transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes bounceInRight {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-o-transform: translateX(2000px);
|
||||
}
|
||||
|
||||
60% {
|
||||
opacity: 1;
|
||||
-o-transform: translateX(-30px);
|
||||
}
|
||||
|
||||
80% {
|
||||
-o-transform: translateX(10px);
|
||||
}
|
||||
|
||||
100% {
|
||||
-o-transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes bounceInRight {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateX(2000px);
|
||||
}
|
||||
|
||||
60% {
|
||||
opacity: 1;
|
||||
transform: translateX(-30px);
|
||||
}
|
||||
|
||||
80% {
|
||||
transform: translateX(10px);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
.bounceInRight {
|
||||
-webkit-animation-name: bounceInRight;
|
||||
-moz-animation-name: bounceInRight;
|
||||
-o-animation-name: bounceInRight;
|
||||
animation-name: bounceInRight;
|
||||
}
|
|
@ -1,85 +0,0 @@
|
|||
@-webkit-keyframes bounceInUp {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateY(2000px);
|
||||
}
|
||||
|
||||
60% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateY(-30px);
|
||||
}
|
||||
|
||||
80% {
|
||||
-webkit-transform: translateY(10px);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: translateY(0);
|
||||
}
|
||||
}
|
||||
@-moz-keyframes bounceInUp {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-moz-transform: translateY(2000px);
|
||||
}
|
||||
|
||||
60% {
|
||||
opacity: 1;
|
||||
-moz-transform: translateY(-30px);
|
||||
}
|
||||
|
||||
80% {
|
||||
-moz-transform: translateY(10px);
|
||||
}
|
||||
|
||||
100% {
|
||||
-moz-transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes bounceInUp {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-o-transform: translateY(2000px);
|
||||
}
|
||||
|
||||
60% {
|
||||
opacity: 1;
|
||||
-o-transform: translateY(-30px);
|
||||
}
|
||||
|
||||
80% {
|
||||
-o-transform: translateY(10px);
|
||||
}
|
||||
|
||||
100% {
|
||||
-o-transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes bounceInUp {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateY(2000px);
|
||||
}
|
||||
|
||||
60% {
|
||||
opacity: 1;
|
||||
transform: translateY(-30px);
|
||||
}
|
||||
|
||||
80% {
|
||||
transform: translateY(10px);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
.bounceInUp {
|
||||
-webkit-animation-name: bounceInUp;
|
||||
-moz-animation-name: bounceInUp;
|
||||
-o-animation-name: bounceInUp;
|
||||
animation-name: bounceInUp;
|
||||
}
|
|
@ -1,86 +0,0 @@
|
|||
@-webkit-keyframes bounceOut {
|
||||
0% {
|
||||
-webkit-transform: scale(1);
|
||||
}
|
||||
|
||||
25% {
|
||||
-webkit-transform: scale(.95);
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 1;
|
||||
-webkit-transform: scale(1.1);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-webkit-transform: scale(.3);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes bounceOut {
|
||||
0% {
|
||||
-moz-transform: scale(1);
|
||||
}
|
||||
|
||||
25% {
|
||||
-moz-transform: scale(.95);
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 1;
|
||||
-moz-transform: scale(1.1);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-moz-transform: scale(.3);
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes bounceOut {
|
||||
0% {
|
||||
-o-transform: scale(1);
|
||||
}
|
||||
|
||||
25% {
|
||||
-o-transform: scale(.95);
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 1;
|
||||
-o-transform: scale(1.1);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-o-transform: scale(.3);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes bounceOut {
|
||||
0% {
|
||||
transform: scale(1);
|
||||
}
|
||||
|
||||
25% {
|
||||
transform: scale(.95);
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 1;
|
||||
transform: scale(1.1);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: scale(.3);
|
||||
}
|
||||
}
|
||||
|
||||
.bounceOut {
|
||||
-webkit-animation-name: bounceOut;
|
||||
-moz-animation-name: bounceOut;
|
||||
-o-animation-name: bounceOut;
|
||||
animation-name: bounceOut;
|
||||
}
|
|
@ -1,70 +0,0 @@
|
|||
@-webkit-keyframes bounceOutDown {
|
||||
0% {
|
||||
-webkit-transform: translateY(0);
|
||||
}
|
||||
|
||||
20% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateY(-20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateY(2000px);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes bounceOutDown {
|
||||
0% {
|
||||
-moz-transform: translateY(0);
|
||||
}
|
||||
|
||||
20% {
|
||||
opacity: 1;
|
||||
-moz-transform: translateY(-20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-moz-transform: translateY(2000px);
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes bounceOutDown {
|
||||
0% {
|
||||
-o-transform: translateY(0);
|
||||
}
|
||||
|
||||
20% {
|
||||
opacity: 1;
|
||||
-o-transform: translateY(-20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-o-transform: translateY(2000px);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes bounceOutDown {
|
||||
0% {
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
20% {
|
||||
opacity: 1;
|
||||
transform: translateY(-20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: translateY(2000px);
|
||||
}
|
||||
}
|
||||
|
||||
.bounceOutDown {
|
||||
-webkit-animation-name: bounceOutDown;
|
||||
-moz-animation-name: bounceOutDown;
|
||||
-o-animation-name: bounceOutDown;
|
||||
animation-name: bounceOutDown;
|
||||
}
|
|
@ -1,70 +0,0 @@
|
|||
@-webkit-keyframes bounceOutLeft {
|
||||
0% {
|
||||
-webkit-transform: translateX(0);
|
||||
}
|
||||
|
||||
20% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateX(20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateX(-2000px);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes bounceOutLeft {
|
||||
0% {
|
||||
-moz-transform: translateX(0);
|
||||
}
|
||||
|
||||
20% {
|
||||
opacity: 1;
|
||||
-moz-transform: translateX(20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-moz-transform: translateX(-2000px);
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes bounceOutLeft {
|
||||
0% {
|
||||
-o-transform: translateX(0);
|
||||
}
|
||||
|
||||
20% {
|
||||
opacity: 1;
|
||||
-o-transform: translateX(20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-o-transform: translateX(-2000px);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes bounceOutLeft {
|
||||
0% {
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
20% {
|
||||
opacity: 1;
|
||||
transform: translateX(20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: translateX(-2000px);
|
||||
}
|
||||
}
|
||||
|
||||
.bounceOutLeft {
|
||||
-webkit-animation-name: bounceOutLeft;
|
||||
-moz-animation-name: bounceOutLeft;
|
||||
-o-animation-name: bounceOutLeft;
|
||||
animation-name: bounceOutLeft;
|
||||
}
|
|
@ -1,70 +0,0 @@
|
|||
@-webkit-keyframes bounceOutRight {
|
||||
0% {
|
||||
-webkit-transform: translateX(0);
|
||||
}
|
||||
|
||||
20% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateX(-20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateX(2000px);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes bounceOutRight {
|
||||
0% {
|
||||
-moz-transform: translateX(0);
|
||||
}
|
||||
|
||||
20% {
|
||||
opacity: 1;
|
||||
-moz-transform: translateX(-20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-moz-transform: translateX(2000px);
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes bounceOutRight {
|
||||
0% {
|
||||
-o-transform: translateX(0);
|
||||
}
|
||||
|
||||
20% {
|
||||
opacity: 1;
|
||||
-o-transform: translateX(-20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-o-transform: translateX(2000px);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes bounceOutRight {
|
||||
0% {
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
20% {
|
||||
opacity: 1;
|
||||
transform: translateX(-20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: translateX(2000px);
|
||||
}
|
||||
}
|
||||
|
||||
.bounceOutRight {
|
||||
-webkit-animation-name: bounceOutRight;
|
||||
-moz-animation-name: bounceOutRight;
|
||||
-o-animation-name: bounceOutRight;
|
||||
animation-name: bounceOutRight;
|
||||
}
|
|
@ -1,70 +0,0 @@
|
|||
@-webkit-keyframes bounceOutUp {
|
||||
0% {
|
||||
-webkit-transform: translateY(0);
|
||||
}
|
||||
|
||||
20% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateY(20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateY(-2000px);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes bounceOutUp {
|
||||
0% {
|
||||
-moz-transform: translateY(0);
|
||||
}
|
||||
|
||||
20% {
|
||||
opacity: 1;
|
||||
-moz-transform: translateY(20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-moz-transform: translateY(-2000px);
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes bounceOutUp {
|
||||
0% {
|
||||
-o-transform: translateY(0);
|
||||
}
|
||||
|
||||
20% {
|
||||
opacity: 1;
|
||||
-o-transform: translateY(20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-o-transform: translateY(-2000px);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes bounceOutUp {
|
||||
0% {
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
20% {
|
||||
opacity: 1;
|
||||
transform: translateY(20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: translateY(-2000px);
|
||||
}
|
||||
}
|
||||
|
||||
.bounceOutUp {
|
||||
-webkit-animation-name: bounceOutUp;
|
||||
-moz-animation-name: bounceOutUp;
|
||||
-o-animation-name: bounceOutUp;
|
||||
animation-name: bounceOutUp;
|
||||
}
|
23
source/bouncing_entrances/bounceIn.css
Normal file
23
source/bouncing_entrances/bounceIn.css
Normal file
|
@ -0,0 +1,23 @@
|
|||
@keyframes bounceIn {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: scale(.3);
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 1;
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
70% {
|
||||
transform: scale(.9);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
|
||||
.bounceIn {
|
||||
animation-name: bounceIn;
|
||||
}
|
23
source/bouncing_entrances/bounceInDown.css
Normal file
23
source/bouncing_entrances/bounceInDown.css
Normal file
|
@ -0,0 +1,23 @@
|
|||
@keyframes bounceInDown {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateY(-2000px);
|
||||
}
|
||||
|
||||
60% {
|
||||
opacity: 1;
|
||||
transform: translateY(30px);
|
||||
}
|
||||
|
||||
80% {
|
||||
transform: translateY(-10px);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
.bounceInDown {
|
||||
animation-name: bounceInDown;
|
||||
}
|
23
source/bouncing_entrances/bounceInLeft.css
Normal file
23
source/bouncing_entrances/bounceInLeft.css
Normal file
|
@ -0,0 +1,23 @@
|
|||
@keyframes bounceInLeft {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateX(-2000px);
|
||||
}
|
||||
|
||||
60% {
|
||||
opacity: 1;
|
||||
transform: translateX(30px);
|
||||
}
|
||||
|
||||
80% {
|
||||
transform: translateX(-10px);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
.bounceInLeft {
|
||||
animation-name: bounceInLeft;
|
||||
}
|
23
source/bouncing_entrances/bounceInRight.css
Normal file
23
source/bouncing_entrances/bounceInRight.css
Normal file
|
@ -0,0 +1,23 @@
|
|||
@keyframes bounceInRight {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateX(2000px);
|
||||
}
|
||||
|
||||
60% {
|
||||
opacity: 1;
|
||||
transform: translateX(-30px);
|
||||
}
|
||||
|
||||
80% {
|
||||
transform: translateX(10px);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
.bounceInRight {
|
||||
animation-name: bounceInRight;
|
||||
}
|
23
source/bouncing_entrances/bounceInUp.css
Normal file
23
source/bouncing_entrances/bounceInUp.css
Normal file
|
@ -0,0 +1,23 @@
|
|||
@keyframes bounceInUp {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateY(2000px);
|
||||
}
|
||||
|
||||
60% {
|
||||
opacity: 1;
|
||||
transform: translateY(-30px);
|
||||
}
|
||||
|
||||
80% {
|
||||
transform: translateY(10px);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
.bounceInUp {
|
||||
animation-name: bounceInUp;
|
||||
}
|
23
source/bouncing_exits/bounceOut.css
Normal file
23
source/bouncing_exits/bounceOut.css
Normal file
|
@ -0,0 +1,23 @@
|
|||
@keyframes bounceOut {
|
||||
0% {
|
||||
transform: scale(1);
|
||||
}
|
||||
|
||||
25% {
|
||||
transform: scale(.95);
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 1;
|
||||
transform: scale(1.1);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: scale(.3);
|
||||
}
|
||||
}
|
||||
|
||||
.bounceOut {
|
||||
animation-name: bounceOut;
|
||||
}
|
19
source/bouncing_exits/bounceOutDown.css
Normal file
19
source/bouncing_exits/bounceOutDown.css
Normal file
|
@ -0,0 +1,19 @@
|
|||
@keyframes bounceOutDown {
|
||||
0% {
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
20% {
|
||||
opacity: 1;
|
||||
transform: translateY(-20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: translateY(2000px);
|
||||
}
|
||||
}
|
||||
|
||||
.bounceOutDown {
|
||||
animation-name: bounceOutDown;
|
||||
}
|
19
source/bouncing_exits/bounceOutLeft.css
Normal file
19
source/bouncing_exits/bounceOutLeft.css
Normal file
|
@ -0,0 +1,19 @@
|
|||
@keyframes bounceOutLeft {
|
||||
0% {
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
20% {
|
||||
opacity: 1;
|
||||
transform: translateX(20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: translateX(-2000px);
|
||||
}
|
||||
}
|
||||
|
||||
.bounceOutLeft {
|
||||
animation-name: bounceOutLeft;
|
||||
}
|
19
source/bouncing_exits/bounceOutRight.css
Normal file
19
source/bouncing_exits/bounceOutRight.css
Normal file
|
@ -0,0 +1,19 @@
|
|||
@keyframes bounceOutRight {
|
||||
0% {
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
20% {
|
||||
opacity: 1;
|
||||
transform: translateX(-20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: translateX(2000px);
|
||||
}
|
||||
}
|
||||
|
||||
.bounceOutRight {
|
||||
animation-name: bounceOutRight;
|
||||
}
|
19
source/bouncing_exits/bounceOutUp.css
Normal file
19
source/bouncing_exits/bounceOutUp.css
Normal file
|
@ -0,0 +1,19 @@
|
|||
@keyframes bounceOutUp {
|
||||
0% {
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
20% {
|
||||
opacity: 1;
|
||||
transform: translateY(20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: translateY(-2000px);
|
||||
}
|
||||
}
|
||||
|
||||
.bounceOutUp {
|
||||
animation-name: bounceOutUp;
|
||||
}
|
|
@ -1,26 +0,0 @@
|
|||
@-webkit-keyframes fadeIn {
|
||||
0% {opacity: 0;}
|
||||
100% {opacity: 1;}
|
||||
}
|
||||
|
||||
@-moz-keyframes fadeIn {
|
||||
0% {opacity: 0;}
|
||||
100% {opacity: 1;}
|
||||
}
|
||||
|
||||
@-o-keyframes fadeIn {
|
||||
0% {opacity: 0;}
|
||||
100% {opacity: 1;}
|
||||
}
|
||||
|
||||
@keyframes fadeIn {
|
||||
0% {opacity: 0;}
|
||||
100% {opacity: 1;}
|
||||
}
|
||||
|
||||
.fadeIn {
|
||||
-webkit-animation-name: fadeIn;
|
||||
-moz-animation-name: fadeIn;
|
||||
-o-animation-name: fadeIn;
|
||||
animation-name: fadeIn;
|
||||
}
|
|
@ -1,54 +0,0 @@
|
|||
@-webkit-keyframes fadeInDown {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateY(-20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes fadeInDown {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-moz-transform: translateY(-20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-moz-transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes fadeInDown {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-o-transform: translateY(-20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-o-transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fadeInDown {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateY(-20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeInDown {
|
||||
-webkit-animation-name: fadeInDown;
|
||||
-moz-animation-name: fadeInDown;
|
||||
-o-animation-name: fadeInDown;
|
||||
animation-name: fadeInDown;
|
||||
}
|
|
@ -1,54 +0,0 @@
|
|||
@-webkit-keyframes fadeInDownBig {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateY(-2000px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes fadeInDownBig {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-moz-transform: translateY(-2000px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-moz-transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes fadeInDownBig {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-o-transform: translateY(-2000px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-o-transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fadeInDownBig {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateY(-2000px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeInDownBig {
|
||||
-webkit-animation-name: fadeInDownBig;
|
||||
-moz-animation-name: fadeInDownBig;
|
||||
-o-animation-name: fadeInDownBig;
|
||||
animation-name: fadeInDownBig;
|
||||
}
|
|
@ -1,54 +0,0 @@
|
|||
@-webkit-keyframes fadeInLeft {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateX(-20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes fadeInLeft {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-moz-transform: translateX(-20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-moz-transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes fadeInLeft {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-o-transform: translateX(-20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-o-transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fadeInLeft {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateX(-20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeInLeft {
|
||||
-webkit-animation-name: fadeInLeft;
|
||||
-moz-animation-name: fadeInLeft;
|
||||
-o-animation-name: fadeInLeft;
|
||||
animation-name: fadeInLeft;
|
||||
}
|
|
@ -1,51 +0,0 @@
|
|||
@-webkit-keyframes fadeInLeftBig {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateX(-2000px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateX(0);
|
||||
}
|
||||
}
|
||||
@-moz-keyframes fadeInLeftBig {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-moz-transform: translateX(-2000px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-moz-transform: translateX(0);
|
||||
}
|
||||
}
|
||||
@-o-keyframes fadeInLeftBig {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-o-transform: translateX(-2000px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-o-transform: translateX(0);
|
||||
}
|
||||
}
|
||||
@keyframes fadeInLeftBig {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateX(-2000px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeInLeftBig {
|
||||
-webkit-animation-name: fadeInLeftBig;
|
||||
-moz-animation-name: fadeInLeftBig;
|
||||
-o-animation-name: fadeInLeftBig;
|
||||
animation-name: fadeInLeftBig;
|
||||
}
|
|
@ -1,54 +0,0 @@
|
|||
@-webkit-keyframes fadeInRight {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateX(20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes fadeInRight {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-moz-transform: translateX(20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-moz-transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes fadeInRight {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-o-transform: translateX(20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-o-transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fadeInRight {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateX(20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeInRight {
|
||||
-webkit-animation-name: fadeInRight;
|
||||
-moz-animation-name: fadeInRight;
|
||||
-o-animation-name: fadeInRight;
|
||||
animation-name: fadeInRight;
|
||||
}
|
|
@ -1,54 +0,0 @@
|
|||
@-webkit-keyframes fadeInRightBig {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateX(2000px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes fadeInRightBig {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-moz-transform: translateX(2000px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-moz-transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes fadeInRightBig {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-o-transform: translateX(2000px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-o-transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fadeInRightBig {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateX(2000px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeInRightBig {
|
||||
-webkit-animation-name: fadeInRightBig;
|
||||
-moz-animation-name: fadeInRightBig;
|
||||
-o-animation-name: fadeInRightBig;
|
||||
animation-name: fadeInRightBig;
|
||||
}
|
|
@ -1,54 +0,0 @@
|
|||
@-webkit-keyframes fadeInUp {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateY(20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes fadeInUp {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-moz-transform: translateY(20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-moz-transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes fadeInUp {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-o-transform: translateY(20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-o-transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fadeInUp {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateY(20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeInUp {
|
||||
-webkit-animation-name: fadeInUp;
|
||||
-moz-animation-name: fadeInUp;
|
||||
-o-animation-name: fadeInUp;
|
||||
animation-name: fadeInUp;
|
||||
}
|
|
@ -1,54 +0,0 @@
|
|||
@-webkit-keyframes fadeInUpBig {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateY(2000px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes fadeInUpBig {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-moz-transform: translateY(2000px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-moz-transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes fadeInUpBig {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-o-transform: translateY(2000px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-o-transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fadeInUpBig {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateY(2000px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeInUpBig {
|
||||
-webkit-animation-name: fadeInUpBig;
|
||||
-moz-animation-name: fadeInUpBig;
|
||||
-o-animation-name: fadeInUpBig;
|
||||
animation-name: fadeInUpBig;
|
||||
}
|
|
@ -1,26 +0,0 @@
|
|||
@-webkit-keyframes fadeOut {
|
||||
0% {opacity: 1;}
|
||||
100% {opacity: 0;}
|
||||
}
|
||||
|
||||
@-moz-keyframes fadeOut {
|
||||
0% {opacity: 1;}
|
||||
100% {opacity: 0;}
|
||||
}
|
||||
|
||||
@-o-keyframes fadeOut {
|
||||
0% {opacity: 1;}
|
||||
100% {opacity: 0;}
|
||||
}
|
||||
|
||||
@keyframes fadeOut {
|
||||
0% {opacity: 1;}
|
||||
100% {opacity: 0;}
|
||||
}
|
||||
|
||||
.fadeOut {
|
||||
-webkit-animation-name: fadeOut;
|
||||
-moz-animation-name: fadeOut;
|
||||
-o-animation-name: fadeOut;
|
||||
animation-name: fadeOut;
|
||||
}
|
|
@ -1,54 +0,0 @@
|
|||
@-webkit-keyframes fadeOutDown {
|
||||
0% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateY(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateY(20px);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes fadeOutDown {
|
||||
0% {
|
||||
opacity: 1;
|
||||
-moz-transform: translateY(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-moz-transform: translateY(20px);
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes fadeOutDown {
|
||||
0% {
|
||||
opacity: 1;
|
||||
-o-transform: translateY(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-o-transform: translateY(20px);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fadeOutDown {
|
||||
0% {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: translateY(20px);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeOutDown {
|
||||
-webkit-animation-name: fadeOutDown;
|
||||
-moz-animation-name: fadeOutDown;
|
||||
-o-animation-name: fadeOutDown;
|
||||
animation-name: fadeOutDown;
|
||||
}
|
|
@ -1,54 +0,0 @@
|
|||
@-webkit-keyframes fadeOutDownBig {
|
||||
0% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateY(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateY(2000px);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes fadeOutDownBig {
|
||||
0% {
|
||||
opacity: 1;
|
||||
-moz-transform: translateY(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-moz-transform: translateY(2000px);
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes fadeOutDownBig {
|
||||
0% {
|
||||
opacity: 1;
|
||||
-o-transform: translateY(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-o-transform: translateY(2000px);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fadeOutDownBig {
|
||||
0% {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: translateY(2000px);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeOutDownBig {
|
||||
-webkit-animation-name: fadeOutDownBig;
|
||||
-moz-animation-name: fadeOutDownBig;
|
||||
-o-animation-name: fadeOutDownBig;
|
||||
animation-name: fadeOutDownBig;
|
||||
}
|
|
@ -1,54 +0,0 @@
|
|||
@-webkit-keyframes fadeOutLeft {
|
||||
0% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateX(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateX(-20px);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes fadeOutLeft {
|
||||
0% {
|
||||
opacity: 1;
|
||||
-moz-transform: translateX(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-moz-transform: translateX(-20px);
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes fadeOutLeft {
|
||||
0% {
|
||||
opacity: 1;
|
||||
-o-transform: translateX(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-o-transform: translateX(-20px);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fadeOutLeft {
|
||||
0% {
|
||||
opacity: 1;
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: translateX(-20px);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeOutLeft {
|
||||
-webkit-animation-name: fadeOutLeft;
|
||||
-moz-animation-name: fadeOutLeft;
|
||||
-o-animation-name: fadeOutLeft;
|
||||
animation-name: fadeOutLeft;
|
||||
}
|
|
@ -1,54 +0,0 @@
|
|||
@-webkit-keyframes fadeOutLeftBig {
|
||||
0% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateX(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateX(-2000px);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes fadeOutLeftBig {
|
||||
0% {
|
||||
opacity: 1;
|
||||
-moz-transform: translateX(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-moz-transform: translateX(-2000px);
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes fadeOutLeftBig {
|
||||
0% {
|
||||
opacity: 1;
|
||||
-o-transform: translateX(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-o-transform: translateX(-2000px);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fadeOutLeftBig {
|
||||
0% {
|
||||
opacity: 1;
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: translateX(-2000px);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeOutLeftBig {
|
||||
-webkit-animation-name: fadeOutLeftBig;
|
||||
-moz-animation-name: fadeOutLeftBig;
|
||||
-o-animation-name: fadeOutLeftBig;
|
||||
animation-name: fadeOutLeftBig;
|
||||
}
|
|
@ -1,54 +0,0 @@
|
|||
@-webkit-keyframes fadeOutRight {
|
||||
0% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateX(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateX(20px);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes fadeOutRight {
|
||||
0% {
|
||||
opacity: 1;
|
||||
-moz-transform: translateX(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-moz-transform: translateX(20px);
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes fadeOutRight {
|
||||
0% {
|
||||
opacity: 1;
|
||||
-o-transform: translateX(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-o-transform: translateX(20px);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fadeOutRight {
|
||||
0% {
|
||||
opacity: 1;
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: translateX(20px);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeOutRight {
|
||||
-webkit-animation-name: fadeOutRight;
|
||||
-moz-animation-name: fadeOutRight;
|
||||
-o-animation-name: fadeOutRight;
|
||||
animation-name: fadeOutRight;
|
||||
}
|
|
@ -1,51 +0,0 @@
|
|||
@-webkit-keyframes fadeOutRightBig {
|
||||
0% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateX(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateX(2000px);
|
||||
}
|
||||
}
|
||||
@-moz-keyframes fadeOutRightBig {
|
||||
0% {
|
||||
opacity: 1;
|
||||
-moz-transform: translateX(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-moz-transform: translateX(2000px);
|
||||
}
|
||||
}
|
||||
@-o-keyframes fadeOutRightBig {
|
||||
0% {
|
||||
opacity: 1;
|
||||
-o-transform: translateX(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-o-transform: translateX(2000px);
|
||||
}
|
||||
}
|
||||
@keyframes fadeOutRightBig {
|
||||
0% {
|
||||
opacity: 1;
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: translateX(2000px);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeOutRightBig {
|
||||
-webkit-animation-name: fadeOutRightBig;
|
||||
-moz-animation-name: fadeOutRightBig;
|
||||
-o-animation-name: fadeOutRightBig;
|
||||
animation-name: fadeOutRightBig;
|
||||
}
|
|
@ -1,51 +0,0 @@
|
|||
@-webkit-keyframes fadeOutUp {
|
||||
0% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateY(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateY(-20px);
|
||||
}
|
||||
}
|
||||
@-moz-keyframes fadeOutUp {
|
||||
0% {
|
||||
opacity: 1;
|
||||
-moz-transform: translateY(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-moz-transform: translateY(-20px);
|
||||
}
|
||||
}
|
||||
@-o-keyframes fadeOutUp {
|
||||
0% {
|
||||
opacity: 1;
|
||||
-o-transform: translateY(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-o-transform: translateY(-20px);
|
||||
}
|
||||
}
|
||||
@keyframes fadeOutUp {
|
||||
0% {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: translateY(-20px);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeOutUp {
|
||||
-webkit-animation-name: fadeOutUp;
|
||||
-moz-animation-name: fadeOutUp;
|
||||
-o-animation-name: fadeOutUp;
|
||||
animation-name: fadeOutUp;
|
||||
}
|
|
@ -1,54 +0,0 @@
|
|||
@-webkit-keyframes fadeOutUpBig {
|
||||
0% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateY(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateY(-2000px);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes fadeOutUpBig {
|
||||
0% {
|
||||
opacity: 1;
|
||||
-moz-transform: translateY(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-moz-transform: translateY(-2000px);
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes fadeOutUpBig {
|
||||
0% {
|
||||
opacity: 1;
|
||||
-o-transform: translateY(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-o-transform: translateY(-2000px);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fadeOutUpBig {
|
||||
0% {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: translateY(-2000px);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeOutUpBig {
|
||||
-webkit-animation-name: fadeOutUpBig;
|
||||
-moz-animation-name: fadeOutUpBig;
|
||||
-o-animation-name: fadeOutUpBig;
|
||||
animation-name: fadeOutUpBig;
|
||||
}
|
8
source/fading_entrances/fadeIn.css
Normal file
8
source/fading_entrances/fadeIn.css
Normal file
|
@ -0,0 +1,8 @@
|
|||
@keyframes fadeIn {
|
||||
0% {opacity: 0;}
|
||||
100% {opacity: 1;}
|
||||
}
|
||||
|
||||
.fadeIn {
|
||||
animation-name: fadeIn;
|
||||
}
|
15
source/fading_entrances/fadeInDown.css
Normal file
15
source/fading_entrances/fadeInDown.css
Normal file
|
@ -0,0 +1,15 @@
|
|||
@keyframes fadeInDown {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateY(-20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeInDown {
|
||||
animation-name: fadeInDown;
|
||||
}
|
15
source/fading_entrances/fadeInDownBig.css
Normal file
15
source/fading_entrances/fadeInDownBig.css
Normal file
|
@ -0,0 +1,15 @@
|
|||
@keyframes fadeInDownBig {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateY(-2000px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeInDownBig {
|
||||
animation-name: fadeInDownBig;
|
||||
}
|
15
source/fading_entrances/fadeInLeft.css
Normal file
15
source/fading_entrances/fadeInLeft.css
Normal file
|
@ -0,0 +1,15 @@
|
|||
@keyframes fadeInLeft {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateX(-20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeInLeft {
|
||||
animation-name: fadeInLeft;
|
||||
}
|
15
source/fading_entrances/fadeInLeftBig.css
Normal file
15
source/fading_entrances/fadeInLeftBig.css
Normal file
|
@ -0,0 +1,15 @@
|
|||
@keyframes fadeInLeftBig {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateX(-2000px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeInLeftBig {
|
||||
animation-name: fadeInLeftBig;
|
||||
}
|
15
source/fading_entrances/fadeInRight.css
Normal file
15
source/fading_entrances/fadeInRight.css
Normal file
|
@ -0,0 +1,15 @@
|
|||
@keyframes fadeInRight {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateX(20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeInRight {
|
||||
animation-name: fadeInRight;
|
||||
}
|
15
source/fading_entrances/fadeInRightBig.css
Normal file
15
source/fading_entrances/fadeInRightBig.css
Normal file
|
@ -0,0 +1,15 @@
|
|||
@keyframes fadeInRightBig {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateX(2000px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeInRightBig {
|
||||
animation-name: fadeInRightBig;
|
||||
}
|
15
source/fading_entrances/fadeInUp.css
Normal file
15
source/fading_entrances/fadeInUp.css
Normal file
|
@ -0,0 +1,15 @@
|
|||
@keyframes fadeInUp {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateY(20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeInUp {
|
||||
animation-name: fadeInUp;
|
||||
}
|
15
source/fading_entrances/fadeInUpBig.css
Normal file
15
source/fading_entrances/fadeInUpBig.css
Normal file
|
@ -0,0 +1,15 @@
|
|||
@keyframes fadeInUpBig {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateY(2000px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeInUpBig {
|
||||
animation-name: fadeInUpBig;
|
||||
}
|
8
source/fading_exits/fadeOut.css
Normal file
8
source/fading_exits/fadeOut.css
Normal file
|
@ -0,0 +1,8 @@
|
|||
@keyframes fadeOut {
|
||||
0% {opacity: 1;}
|
||||
100% {opacity: 0;}
|
||||
}
|
||||
|
||||
.fadeOut {
|
||||
animation-name: fadeOut;
|
||||
}
|
15
source/fading_exits/fadeOutDown.css
Normal file
15
source/fading_exits/fadeOutDown.css
Normal file
|
@ -0,0 +1,15 @@
|
|||
@keyframes fadeOutDown {
|
||||
0% {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: translateY(20px);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeOutDown {
|
||||
animation-name: fadeOutDown;
|
||||
}
|
15
source/fading_exits/fadeOutDownBig.css
Normal file
15
source/fading_exits/fadeOutDownBig.css
Normal file
|
@ -0,0 +1,15 @@
|
|||
@keyframes fadeOutDownBig {
|
||||
0% {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: translateY(2000px);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeOutDownBig {
|
||||
animation-name: fadeOutDownBig;
|
||||
}
|
15
source/fading_exits/fadeOutLeft.css
Normal file
15
source/fading_exits/fadeOutLeft.css
Normal file
|
@ -0,0 +1,15 @@
|
|||
@keyframes fadeOutLeft {
|
||||
0% {
|
||||
opacity: 1;
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: translateX(-20px);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeOutLeft {
|
||||
animation-name: fadeOutLeft;
|
||||
}
|
15
source/fading_exits/fadeOutLeftBig.css
Normal file
15
source/fading_exits/fadeOutLeftBig.css
Normal file
|
@ -0,0 +1,15 @@
|
|||
@keyframes fadeOutLeftBig {
|
||||
0% {
|
||||
opacity: 1;
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: translateX(-2000px);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeOutLeftBig {
|
||||
animation-name: fadeOutLeftBig;
|
||||
}
|
15
source/fading_exits/fadeOutRight.css
Normal file
15
source/fading_exits/fadeOutRight.css
Normal file
|
@ -0,0 +1,15 @@
|
|||
@keyframes fadeOutRight {
|
||||
0% {
|
||||
opacity: 1;
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: translateX(20px);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeOutRight {
|
||||
animation-name: fadeOutRight;
|
||||
}
|
15
source/fading_exits/fadeOutRightBig.css
Normal file
15
source/fading_exits/fadeOutRightBig.css
Normal file
|
@ -0,0 +1,15 @@
|
|||
@keyframes fadeOutRightBig {
|
||||
0% {
|
||||
opacity: 1;
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: translateX(2000px);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeOutRightBig {
|
||||
animation-name: fadeOutRightBig;
|
||||
}
|
15
source/fading_exits/fadeOutUp.css
Normal file
15
source/fading_exits/fadeOutUp.css
Normal file
|
@ -0,0 +1,15 @@
|
|||
@keyframes fadeOutUp {
|
||||
0% {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: translateY(-20px);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeOutUp {
|
||||
animation-name: fadeOutUp;
|
||||
}
|
15
source/fading_exits/fadeOutUpBig.css
Normal file
15
source/fading_exits/fadeOutUpBig.css
Normal file
|
@ -0,0 +1,15 @@
|
|||
@keyframes fadeOutUpBig {
|
||||
0% {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: translateY(-2000px);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeOutUpBig {
|
||||
animation-name: fadeOutUpBig;
|
||||
}
|
|
@ -1,26 +0,0 @@
|
|||
@-webkit-keyframes flash {
|
||||
0%, 50%, 100% {opacity: 1;}
|
||||
25%, 75% {opacity: 0;}
|
||||
}
|
||||
|
||||
@-moz-keyframes flash {
|
||||
0%, 50%, 100% {opacity: 1;}
|
||||
25%, 75% {opacity: 0;}
|
||||
}
|
||||
|
||||
@-o-keyframes flash {
|
||||
0%, 50%, 100% {opacity: 1;}
|
||||
25%, 75% {opacity: 0;}
|
||||
}
|
||||
|
||||
@keyframes flash {
|
||||
0%, 50%, 100% {opacity: 1;}
|
||||
25%, 75% {opacity: 0;}
|
||||
}
|
||||
|
||||
.flash {
|
||||
-webkit-animation-name: flash;
|
||||
-moz-animation-name: flash;
|
||||
-o-animation-name: flash;
|
||||
animation-name: flash;
|
||||
}
|
|
@ -1,99 +0,0 @@
|
|||
@-webkit-keyframes flip {
|
||||
0% {
|
||||
-webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
|
||||
-webkit-animation-timing-function: ease-out;
|
||||
}
|
||||
40% {
|
||||
-webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
|
||||
-webkit-animation-timing-function: ease-out;
|
||||
}
|
||||
50% {
|
||||
-webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
|
||||
-webkit-animation-timing-function: ease-in;
|
||||
}
|
||||
80% {
|
||||
-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
|
||||
-webkit-animation-timing-function: ease-in;
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
|
||||
-webkit-animation-timing-function: ease-in;
|
||||
}
|
||||
}
|
||||
@-moz-keyframes flip {
|
||||
0% {
|
||||
-moz-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
|
||||
-moz-animation-timing-function: ease-out;
|
||||
}
|
||||
40% {
|
||||
-moz-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
|
||||
-moz-animation-timing-function: ease-out;
|
||||
}
|
||||
50% {
|
||||
-moz-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
|
||||
-moz-animation-timing-function: ease-in;
|
||||
}
|
||||
80% {
|
||||
-moz-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
|
||||
-moz-animation-timing-function: ease-in;
|
||||
}
|
||||
100% {
|
||||
-moz-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
|
||||
-moz-animation-timing-function: ease-in;
|
||||
}
|
||||
}
|
||||
@-o-keyframes flip {
|
||||
0% {
|
||||
-o-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
|
||||
-o-animation-timing-function: ease-out;
|
||||
}
|
||||
40% {
|
||||
-o-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
|
||||
-o-animation-timing-function: ease-out;
|
||||
}
|
||||
50% {
|
||||
-o-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
|
||||
-o-animation-timing-function: ease-in;
|
||||
}
|
||||
80% {
|
||||
-o-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
|
||||
-o-animation-timing-function: ease-in;
|
||||
}
|
||||
100% {
|
||||
-o-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
|
||||
-o-animation-timing-function: ease-in;
|
||||
}
|
||||
}
|
||||
@keyframes flip {
|
||||
0% {
|
||||
transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
|
||||
animation-timing-function: ease-out;
|
||||
}
|
||||
40% {
|
||||
transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
|
||||
animation-timing-function: ease-out;
|
||||
}
|
||||
50% {
|
||||
transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
|
||||
animation-timing-function: ease-in;
|
||||
}
|
||||
80% {
|
||||
transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
|
||||
animation-timing-function: ease-in;
|
||||
}
|
||||
100% {
|
||||
transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
|
||||
animation-timing-function: ease-in;
|
||||
}
|
||||
}
|
||||
|
||||
.animated.flip {
|
||||
-webkit-backface-visibility: visible !important;
|
||||
-webkit-animation-name: flip;
|
||||
-moz-backface-visibility: visible !important;
|
||||
-moz-animation-name: flip;
|
||||
-o-backface-visibility: visible !important;
|
||||
-o-animation-name: flip;
|
||||
backface-visibility: visible !important;
|
||||
animation-name: flip;
|
||||
}
|
|
@ -1,87 +0,0 @@
|
|||
@-webkit-keyframes flipInX {
|
||||
0% {
|
||||
-webkit-transform: perspective(400px) rotateX(90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
40% {
|
||||
-webkit-transform: perspective(400px) rotateX(-10deg);
|
||||
}
|
||||
|
||||
70% {
|
||||
-webkit-transform: perspective(400px) rotateX(10deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: perspective(400px) rotateX(0deg);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
@-moz-keyframes flipInX {
|
||||
0% {
|
||||
-moz-transform: perspective(400px) rotateX(90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
40% {
|
||||
-moz-transform: perspective(400px) rotateX(-10deg);
|
||||
}
|
||||
|
||||
70% {
|
||||
-moz-transform: perspective(400px) rotateX(10deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
-moz-transform: perspective(400px) rotateX(0deg);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
@-o-keyframes flipInX {
|
||||
0% {
|
||||
-o-transform: perspective(400px) rotateX(90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
40% {
|
||||
-o-transform: perspective(400px) rotateX(-10deg);
|
||||
}
|
||||
|
||||
70% {
|
||||
-o-transform: perspective(400px) rotateX(10deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
-o-transform: perspective(400px) rotateX(0deg);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
@keyframes flipInX {
|
||||
0% {
|
||||
transform: perspective(400px) rotateX(90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
40% {
|
||||
transform: perspective(400px) rotateX(-10deg);
|
||||
}
|
||||
|
||||
70% {
|
||||
transform: perspective(400px) rotateX(10deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: perspective(400px) rotateX(0deg);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.flipInX {
|
||||
-webkit-backface-visibility: visible !important;
|
||||
-webkit-animation-name: flipInX;
|
||||
-moz-backface-visibility: visible !important;
|
||||
-moz-animation-name: flipInX;
|
||||
-o-backface-visibility: visible !important;
|
||||
-o-animation-name: flipInX;
|
||||
backface-visibility: visible !important;
|
||||
animation-name: flipInX;
|
||||
}
|
|
@ -1,87 +0,0 @@
|
|||
@-webkit-keyframes flipInY {
|
||||
0% {
|
||||
-webkit-transform: perspective(400px) rotateY(90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
40% {
|
||||
-webkit-transform: perspective(400px) rotateY(-10deg);
|
||||
}
|
||||
|
||||
70% {
|
||||
-webkit-transform: perspective(400px) rotateY(10deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: perspective(400px) rotateY(0deg);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
@-moz-keyframes flipInY {
|
||||
0% {
|
||||
-moz-transform: perspective(400px) rotateY(90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
40% {
|
||||
-moz-transform: perspective(400px) rotateY(-10deg);
|
||||
}
|
||||
|
||||
70% {
|
||||
-moz-transform: perspective(400px) rotateY(10deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
-moz-transform: perspective(400px) rotateY(0deg);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
@-o-keyframes flipInY {
|
||||
0% {
|
||||
-o-transform: perspective(400px) rotateY(90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
40% {
|
||||
-o-transform: perspective(400px) rotateY(-10deg);
|
||||
}
|
||||
|
||||
70% {
|
||||
-o-transform: perspective(400px) rotateY(10deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
-o-transform: perspective(400px) rotateY(0deg);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
@keyframes flipInY {
|
||||
0% {
|
||||
transform: perspective(400px) rotateY(90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
40% {
|
||||
transform: perspective(400px) rotateY(-10deg);
|
||||
}
|
||||
|
||||
70% {
|
||||
transform: perspective(400px) rotateY(10deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: perspective(400px) rotateY(0deg);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.flipInY {
|
||||
-webkit-backface-visibility: visible !important;
|
||||
-webkit-animation-name: flipInY;
|
||||
-moz-backface-visibility: visible !important;
|
||||
-moz-animation-name: flipInY;
|
||||
-o-backface-visibility: visible !important;
|
||||
-o-animation-name: flipInY;
|
||||
backface-visibility: visible !important;
|
||||
animation-name: flipInY;
|
||||
}
|
|
@ -1,54 +0,0 @@
|
|||
@-webkit-keyframes flipOutX {
|
||||
0% {
|
||||
-webkit-transform: perspective(400px) rotateX(0deg);
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: perspective(400px) rotateX(90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes flipOutX {
|
||||
0% {
|
||||
-moz-transform: perspective(400px) rotateX(0deg);
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
-moz-transform: perspective(400px) rotateX(90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes flipOutX {
|
||||
0% {
|
||||
-o-transform: perspective(400px) rotateX(0deg);
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
-o-transform: perspective(400px) rotateX(90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes flipOutX {
|
||||
0% {
|
||||
transform: perspective(400px) rotateX(0deg);
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
transform: perspective(400px) rotateX(90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.flipOutX {
|
||||
-webkit-animation-name: flipOutX;
|
||||
-webkit-backface-visibility: visible !important;
|
||||
-moz-animation-name: flipOutX;
|
||||
-moz-backface-visibility: visible !important;
|
||||
-o-animation-name: flipOutX;
|
||||
-o-backface-visibility: visible !important;
|
||||
animation-name: flipOutX;
|
||||
backface-visibility: visible !important;
|
||||
}
|
|
@ -1,51 +0,0 @@
|
|||
@-webkit-keyframes flipOutY {
|
||||
0% {
|
||||
-webkit-transform: perspective(400px) rotateY(0deg);
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: perspective(400px) rotateY(90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
@-moz-keyframes flipOutY {
|
||||
0% {
|
||||
-moz-transform: perspective(400px) rotateY(0deg);
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
-moz-transform: perspective(400px) rotateY(90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
@-o-keyframes flipOutY {
|
||||
0% {
|
||||
-o-transform: perspective(400px) rotateY(0deg);
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
-o-transform: perspective(400px) rotateY(90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
@keyframes flipOutY {
|
||||
0% {
|
||||
transform: perspective(400px) rotateY(0deg);
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
transform: perspective(400px) rotateY(90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.flipOutY {
|
||||
-webkit-backface-visibility: visible !important;
|
||||
-webkit-animation-name: flipOutY;
|
||||
-moz-backface-visibility: visible !important;
|
||||
-moz-animation-name: flipOutY;
|
||||
-o-backface-visibility: visible !important;
|
||||
-o-animation-name: flipOutY;
|
||||
backface-visibility: visible !important;
|
||||
animation-name: flipOutY;
|
||||
}
|
27
source/flippers/flip.css
Normal file
27
source/flippers/flip.css
Normal file
|
@ -0,0 +1,27 @@
|
|||
@keyframes flip {
|
||||
0% {
|
||||
transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
|
||||
animation-timing-function: ease-out;
|
||||
}
|
||||
40% {
|
||||
transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
|
||||
animation-timing-function: ease-out;
|
||||
}
|
||||
50% {
|
||||
transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
|
||||
animation-timing-function: ease-in;
|
||||
}
|
||||
80% {
|
||||
transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
|
||||
animation-timing-function: ease-in;
|
||||
}
|
||||
100% {
|
||||
transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
|
||||
animation-timing-function: ease-in;
|
||||
}
|
||||
}
|
||||
|
||||
.animated.flip {
|
||||
backface-visibility: visible !important;
|
||||
animation-name: flip;
|
||||
}
|
24
source/flippers/flipInX.css
Normal file
24
source/flippers/flipInX.css
Normal file
|
@ -0,0 +1,24 @@
|
|||
@keyframes flipInX {
|
||||
0% {
|
||||
transform: perspective(400px) rotateX(90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
40% {
|
||||
transform: perspective(400px) rotateX(-10deg);
|
||||
}
|
||||
|
||||
70% {
|
||||
transform: perspective(400px) rotateX(10deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: perspective(400px) rotateX(0deg);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.flipInX {
|
||||
backface-visibility: visible !important;
|
||||
animation-name: flipInX;
|
||||
}
|
24
source/flippers/flipInY.css
Normal file
24
source/flippers/flipInY.css
Normal file
|
@ -0,0 +1,24 @@
|
|||
@keyframes flipInY {
|
||||
0% {
|
||||
transform: perspective(400px) rotateY(90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
40% {
|
||||
transform: perspective(400px) rotateY(-10deg);
|
||||
}
|
||||
|
||||
70% {
|
||||
transform: perspective(400px) rotateY(10deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: perspective(400px) rotateY(0deg);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.flipInY {
|
||||
backface-visibility: visible !important;
|
||||
animation-name: flipInY;
|
||||
}
|
15
source/flippers/flipOutX.css
Normal file
15
source/flippers/flipOutX.css
Normal file
|
@ -0,0 +1,15 @@
|
|||
@keyframes flipOutX {
|
||||
0% {
|
||||
transform: perspective(400px) rotateX(0deg);
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
transform: perspective(400px) rotateX(90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.flipOutX {
|
||||
animation-name: flipOutX;
|
||||
backface-visibility: visible !important;
|
||||
}
|
15
source/flippers/flipOutY.css
Normal file
15
source/flippers/flipOutY.css
Normal file
|
@ -0,0 +1,15 @@
|
|||
@keyframes flipOutY {
|
||||
0% {
|
||||
transform: perspective(400px) rotateY(0deg);
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
transform: perspective(400px) rotateY(90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.flipOutY {
|
||||
backface-visibility: visible !important;
|
||||
animation-name: flipOutY;
|
||||
}
|
|
@ -1,38 +0,0 @@
|
|||
@-webkit-keyframes hinge {
|
||||
0% { -webkit-transform: rotate(0); -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out; }
|
||||
20%, 60% { -webkit-transform: rotate(80deg); -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out; }
|
||||
40% { -webkit-transform: rotate(60deg); -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out; }
|
||||
80% { -webkit-transform: rotate(60deg) translateY(0); opacity: 1; -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out; }
|
||||
100% { -webkit-transform: translateY(700px); opacity: 0; }
|
||||
}
|
||||
|
||||
@-moz-keyframes hinge {
|
||||
0% { -moz-transform: rotate(0); -moz-transform-origin: top left; -moz-animation-timing-function: ease-in-out; }
|
||||
20%, 60% { -moz-transform: rotate(80deg); -moz-transform-origin: top left; -moz-animation-timing-function: ease-in-out; }
|
||||
40% { -moz-transform: rotate(60deg); -moz-transform-origin: top left; -moz-animation-timing-function: ease-in-out; }
|
||||
80% { -moz-transform: rotate(60deg) translateY(0); opacity: 1; -moz-transform-origin: top left; -moz-animation-timing-function: ease-in-out; }
|
||||
100% { -moz-transform: translateY(700px); opacity: 0; }
|
||||
}
|
||||
|
||||
@-o-keyframes hinge {
|
||||
0% { -o-transform: rotate(0); -o-transform-origin: top left; -o-animation-timing-function: ease-in-out; }
|
||||
20%, 60% { -o-transform: rotate(80deg); -o-transform-origin: top left; -o-animation-timing-function: ease-in-out; }
|
||||
40% { -o-transform: rotate(60deg); -o-transform-origin: top left; -o-animation-timing-function: ease-in-out; }
|
||||
80% { -o-transform: rotate(60deg) translateY(0); opacity: 1; -o-transform-origin: top left; -o-animation-timing-function: ease-in-out; }
|
||||
100% { -o-transform: translateY(700px); opacity: 0; }
|
||||
}
|
||||
|
||||
@keyframes hinge {
|
||||
0% { transform: rotate(0); transform-origin: top left; animation-timing-function: ease-in-out; }
|
||||
20%, 60% { transform: rotate(80deg); transform-origin: top left; animation-timing-function: ease-in-out; }
|
||||
40% { transform: rotate(60deg); transform-origin: top left; animation-timing-function: ease-in-out; }
|
||||
80% { transform: rotate(60deg) translateY(0); opacity: 1; transform-origin: top left; animation-timing-function: ease-in-out; }
|
||||
100% { transform: translateY(700px); opacity: 0; }
|
||||
}
|
||||
|
||||
.hinge {
|
||||
-webkit-animation-name: hinge;
|
||||
-moz-animation-name: hinge;
|
||||
-o-animation-name: hinge;
|
||||
animation-name: hinge;
|
||||
}
|
|
@ -1,39 +0,0 @@
|
|||
@-webkit-keyframes lightSpeedIn {
|
||||
0% { -webkit-transform: translateX(100%) skewX(-30deg); opacity: 0; }
|
||||
60% { -webkit-transform: translateX(-20%) skewX(30deg); opacity: 1; }
|
||||
80% { -webkit-transform: translateX(0%) skewX(-15deg); opacity: 1; }
|
||||
100% { -webkit-transform: translateX(0%) skewX(0deg); opacity: 1; }
|
||||
}
|
||||
|
||||
@-moz-keyframes lightSpeedIn {
|
||||
0% { -moz-transform: translateX(100%) skewX(-30deg); opacity: 0; }
|
||||
60% { -moz-transform: translateX(-20%) skewX(30deg); opacity: 1; }
|
||||
80% { -moz-transform: translateX(0%) skewX(-15deg); opacity: 1; }
|
||||
100% { -moz-transform: translateX(0%) skewX(0deg); opacity: 1; }
|
||||
}
|
||||
|
||||
@-o-keyframes lightSpeedIn {
|
||||
0% { -o-transform: translateX(100%) skewX(-30deg); opacity: 0; }
|
||||
60% { -o-transform: translateX(-20%) skewX(30deg); opacity: 1; }
|
||||
80% { -o-transform: translateX(0%) skewX(-15deg); opacity: 1; }
|
||||
100% { -o-transform: translateX(0%) skewX(0deg); opacity: 1; }
|
||||
}
|
||||
|
||||
@keyframes lightSpeedIn {
|
||||
0% { transform: translateX(100%) skewX(-30deg); opacity: 0; }
|
||||
60% { transform: translateX(-20%) skewX(30deg); opacity: 1; }
|
||||
80% { transform: translateX(0%) skewX(-15deg); opacity: 1; }
|
||||
100% { transform: translateX(0%) skewX(0deg); opacity: 1; }
|
||||
}
|
||||
|
||||
.lightSpeedIn {
|
||||
-webkit-animation-name: lightSpeedIn;
|
||||
-moz-animation-name: lightSpeedIn;
|
||||
-o-animation-name: lightSpeedIn;
|
||||
animation-name: lightSpeedIn;
|
||||
|
||||
-webkit-animation-timing-function: ease-out;
|
||||
-moz-animation-timing-function: ease-out;
|
||||
-o-animation-timing-function: ease-out;
|
||||
animation-timing-function: ease-out;
|
||||
}
|
|
@ -1,31 +0,0 @@
|
|||
@-webkit-keyframes lightSpeedOut {
|
||||
0% { -webkit-transform: translateX(0%) skewX(0deg); opacity: 1; }
|
||||
100% { -webkit-transform: translateX(100%) skewX(-30deg); opacity: 0; }
|
||||
}
|
||||
|
||||
@-moz-keyframes lightSpeedOut {
|
||||
0% { -moz-transform: translateX(0%) skewX(0deg); opacity: 1; }
|
||||
100% { -moz-transform: translateX(100%) skewX(-30deg); opacity: 0; }
|
||||
}
|
||||
|
||||
@-o-keyframes lightSpeedOut {
|
||||
0% { -o-transform: translateX(0%) skewX(0deg); opacity: 1; }
|
||||
100% { -o-transform: translateX(100%) skewX(-30deg); opacity: 0; }
|
||||
}
|
||||
|
||||
@keyframes lightSpeedOut {
|
||||
0% { transform: translateX(0%) skewX(0deg); opacity: 1; }
|
||||
100% { transform: translateX(100%) skewX(-30deg); opacity: 0; }
|
||||
}
|
||||
|
||||
.lightSpeedOut {
|
||||
-webkit-animation-name: lightSpeedOut;
|
||||
-moz-animation-name: lightSpeedOut;
|
||||
-o-animation-name: lightSpeedOut;
|
||||
animation-name: lightSpeedOut;
|
||||
|
||||
-webkit-animation-timing-function: ease-in;
|
||||
-moz-animation-timing-function: ease-in;
|
||||
-o-animation-timing-function: ease-in;
|
||||
animation-timing-function: ease-in;
|
||||
}
|
11
source/lightspeed/lightSpeedIn.css
Normal file
11
source/lightspeed/lightSpeedIn.css
Normal file
|
@ -0,0 +1,11 @@
|
|||
@keyframes lightSpeedIn {
|
||||
0% { transform: translateX(100%) skewX(-30deg); opacity: 0; }
|
||||
60% { transform: translateX(-20%) skewX(30deg); opacity: 1; }
|
||||
80% { transform: translateX(0%) skewX(-15deg); opacity: 1; }
|
||||
100% { transform: translateX(0%) skewX(0deg); opacity: 1; }
|
||||
}
|
||||
|
||||
.lightSpeedIn {
|
||||
animation-name: lightSpeedIn;
|
||||
animation-timing-function: ease-out;
|
||||
}
|
10
source/lightspeed/lightSpeedOut.css
Normal file
10
source/lightspeed/lightSpeedOut.css
Normal file
|
@ -0,0 +1,10 @@
|
|||
@keyframes lightSpeedOut {
|
||||
0% { transform: translateX(0%) skewX(0deg); opacity: 1; }
|
||||
100% { transform: translateX(100%) skewX(-30deg); opacity: 0; }
|
||||
}
|
||||
|
||||
.lightSpeedOut {
|
||||
animation-name: lightSpeedOut;
|
||||
|
||||
animation-timing-function: ease-in;
|
||||
}
|
|
@ -1,29 +0,0 @@
|
|||
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
|
||||
|
||||
@-webkit-keyframes pulse {
|
||||
0% { -webkit-transform: scale(1); }
|
||||
50% { -webkit-transform: scale(1.1); }
|
||||
100% { -webkit-transform: scale(1); }
|
||||
}
|
||||
@-moz-keyframes pulse {
|
||||
0% { -moz-transform: scale(1); }
|
||||
50% { -moz-transform: scale(1.1); }
|
||||
100% { -moz-transform: scale(1); }
|
||||
}
|
||||
@-o-keyframes pulse {
|
||||
0% { -o-transform: scale(1); }
|
||||
50% { -o-transform: scale(1.1); }
|
||||
100% { -o-transform: scale(1); }
|
||||
}
|
||||
@keyframes pulse {
|
||||
0% { transform: scale(1); }
|
||||
50% { transform: scale(1.1); }
|
||||
100% { transform: scale(1); }
|
||||
}
|
||||
|
||||
.pulse {
|
||||
-webkit-animation-name: pulse;
|
||||
-moz-animation-name: pulse;
|
||||
-o-animation-name: pulse;
|
||||
animation-name: pulse;
|
||||
}
|
|
@ -1,28 +0,0 @@
|
|||
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
|
||||
|
||||
@-webkit-keyframes rollIn {
|
||||
0% { opacity: 0; -webkit-transform: translateX(-100%) rotate(-120deg); }
|
||||
100% { opacity: 1; -webkit-transform: translateX(0px) rotate(0deg); }
|
||||
}
|
||||
|
||||
@-moz-keyframes rollIn {
|
||||
0% { opacity: 0; -moz-transform: translateX(-100%) rotate(-120deg); }
|
||||
100% { opacity: 1; -moz-transform: translateX(0px) rotate(0deg); }
|
||||
}
|
||||
|
||||
@-o-keyframes rollIn {
|
||||
0% { opacity: 0; -o-transform: translateX(-100%) rotate(-120deg); }
|
||||
100% { opacity: 1; -o-transform: translateX(0px) rotate(0deg); }
|
||||
}
|
||||
|
||||
@keyframes rollIn {
|
||||
0% { opacity: 0; transform: translateX(-100%) rotate(-120deg); }
|
||||
100% { opacity: 1; transform: translateX(0px) rotate(0deg); }
|
||||
}
|
||||
|
||||
.rollIn {
|
||||
-webkit-animation-name: rollIn;
|
||||
-moz-animation-name: rollIn;
|
||||
-o-animation-name: rollIn;
|
||||
animation-name: rollIn;
|
||||
}
|
|
@ -1,56 +0,0 @@
|
|||
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
|
||||
|
||||
@-webkit-keyframes rollOut {
|
||||
0% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateX(0px) rotate(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateX(100%) rotate(120deg);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes rollOut {
|
||||
0% {
|
||||
opacity: 1;
|
||||
-moz-transform: translateX(0px) rotate(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-moz-transform: translateX(100%) rotate(120deg);
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes rollOut {
|
||||
0% {
|
||||
opacity: 1;
|
||||
-o-transform: translateX(0px) rotate(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-o-transform: translateX(100%) rotate(120deg);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes rollOut {
|
||||
0% {
|
||||
opacity: 1;
|
||||
transform: translateX(0px) rotate(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: translateX(100%) rotate(120deg);
|
||||
}
|
||||
}
|
||||
|
||||
.rollOut {
|
||||
-webkit-animation-name: rollOut;
|
||||
-moz-animation-name: rollOut;
|
||||
-o-animation-name: rollOut;
|
||||
animation-name: rollOut;
|
||||
}
|
|
@ -1,59 +0,0 @@
|
|||
@-webkit-keyframes rotateIn {
|
||||
0% {
|
||||
-webkit-transform-origin: center center;
|
||||
-webkit-transform: rotate(-200deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform-origin: center center;
|
||||
-webkit-transform: rotate(0);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
@-moz-keyframes rotateIn {
|
||||
0% {
|
||||
-moz-transform-origin: center center;
|
||||
-moz-transform: rotate(-200deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
-moz-transform-origin: center center;
|
||||
-moz-transform: rotate(0);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
@-o-keyframes rotateIn {
|
||||
0% {
|
||||
-o-transform-origin: center center;
|
||||
-o-transform: rotate(-200deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
-o-transform-origin: center center;
|
||||
-o-transform: rotate(0);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
@keyframes rotateIn {
|
||||
0% {
|
||||
transform-origin: center center;
|
||||
transform: rotate(-200deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
transform-origin: center center;
|
||||
transform: rotate(0);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.rotateIn {
|
||||
-webkit-animation-name: rotateIn;
|
||||
-moz-animation-name: rotateIn;
|
||||
-o-animation-name: rotateIn;
|
||||
animation-name: rotateIn;
|
||||
}
|
|
@ -1,62 +0,0 @@
|
|||
@-webkit-keyframes rotateInDownLeft {
|
||||
0% {
|
||||
-webkit-transform-origin: left bottom;
|
||||
-webkit-transform: rotate(-90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform-origin: left bottom;
|
||||
-webkit-transform: rotate(0);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes rotateInDownLeft {
|
||||
0% {
|
||||
-moz-transform-origin: left bottom;
|
||||
-moz-transform: rotate(-90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
-moz-transform-origin: left bottom;
|
||||
-moz-transform: rotate(0);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes rotateInDownLeft {
|
||||
0% {
|
||||
-o-transform-origin: left bottom;
|
||||
-o-transform: rotate(-90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
-o-transform-origin: left bottom;
|
||||
-o-transform: rotate(0);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes rotateInDownLeft {
|
||||
0% {
|
||||
transform-origin: left bottom;
|
||||
transform: rotate(-90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
transform-origin: left bottom;
|
||||
transform: rotate(0);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.rotateInDownLeft {
|
||||
-webkit-animation-name: rotateInDownLeft;
|
||||
-moz-animation-name: rotateInDownLeft;
|
||||
-o-animation-name: rotateInDownLeft;
|
||||
animation-name: rotateInDownLeft;
|
||||
}
|
|
@ -1,62 +0,0 @@
|
|||
@-webkit-keyframes rotateInDownRight {
|
||||
0% {
|
||||
-webkit-transform-origin: right bottom;
|
||||
-webkit-transform: rotate(90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform-origin: right bottom;
|
||||
-webkit-transform: rotate(0);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes rotateInDownRight {
|
||||
0% {
|
||||
-moz-transform-origin: right bottom;
|
||||
-moz-transform: rotate(90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
-moz-transform-origin: right bottom;
|
||||
-moz-transform: rotate(0);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes rotateInDownRight {
|
||||
0% {
|
||||
-o-transform-origin: right bottom;
|
||||
-o-transform: rotate(90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
-o-transform-origin: right bottom;
|
||||
-o-transform: rotate(0);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes rotateInDownRight {
|
||||
0% {
|
||||
transform-origin: right bottom;
|
||||
transform: rotate(90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
transform-origin: right bottom;
|
||||
transform: rotate(0);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.rotateInDownRight {
|
||||
-webkit-animation-name: rotateInDownRight;
|
||||
-moz-animation-name: rotateInDownRight;
|
||||
-o-animation-name: rotateInDownRight;
|
||||
animation-name: rotateInDownRight;
|
||||
}
|
|
@ -1,62 +0,0 @@
|
|||
@-webkit-keyframes rotateInUpLeft {
|
||||
0% {
|
||||
-webkit-transform-origin: left bottom;
|
||||
-webkit-transform: rotate(90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform-origin: left bottom;
|
||||
-webkit-transform: rotate(0);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes rotateInUpLeft {
|
||||
0% {
|
||||
-moz-transform-origin: left bottom;
|
||||
-moz-transform: rotate(90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
-moz-transform-origin: left bottom;
|
||||
-moz-transform: rotate(0);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes rotateInUpLeft {
|
||||
0% {
|
||||
-o-transform-origin: left bottom;
|
||||
-o-transform: rotate(90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
-o-transform-origin: left bottom;
|
||||
-o-transform: rotate(0);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes rotateInUpLeft {
|
||||
0% {
|
||||
transform-origin: left bottom;
|
||||
transform: rotate(90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
transform-origin: left bottom;
|
||||
transform: rotate(0);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.rotateInUpLeft {
|
||||
-webkit-animation-name: rotateInUpLeft;
|
||||
-moz-animation-name: rotateInUpLeft;
|
||||
-o-animation-name: rotateInUpLeft;
|
||||
animation-name: rotateInUpLeft;
|
||||
}
|
|
@ -1,62 +0,0 @@
|
|||
@-webkit-keyframes rotateInUpRight {
|
||||
0% {
|
||||
-webkit-transform-origin: right bottom;
|
||||
-webkit-transform: rotate(-90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform-origin: right bottom;
|
||||
-webkit-transform: rotate(0);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes rotateInUpRight {
|
||||
0% {
|
||||
-moz-transform-origin: right bottom;
|
||||
-moz-transform: rotate(-90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
-moz-transform-origin: right bottom;
|
||||
-moz-transform: rotate(0);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes rotateInUpRight {
|
||||
0% {
|
||||
-o-transform-origin: right bottom;
|
||||
-o-transform: rotate(-90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
-o-transform-origin: right bottom;
|
||||
-o-transform: rotate(0);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes rotateInUpRight {
|
||||
0% {
|
||||
transform-origin: right bottom;
|
||||
transform: rotate(-90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
transform-origin: right bottom;
|
||||
transform: rotate(0);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.rotateInUpRight {
|
||||
-webkit-animation-name: rotateInUpRight;
|
||||
-moz-animation-name: rotateInUpRight;
|
||||
-o-animation-name: rotateInUpRight;
|
||||
animation-name: rotateInUpRight;
|
||||
}
|
|
@ -1,62 +0,0 @@
|
|||
@-webkit-keyframes rotateOut {
|
||||
0% {
|
||||
-webkit-transform-origin: center center;
|
||||
-webkit-transform: rotate(0);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform-origin: center center;
|
||||
-webkit-transform: rotate(200deg);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes rotateOut {
|
||||
0% {
|
||||
-moz-transform-origin: center center;
|
||||
-moz-transform: rotate(0);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
100% {
|
||||
-moz-transform-origin: center center;
|
||||
-moz-transform: rotate(200deg);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes rotateOut {
|
||||
0% {
|
||||
-o-transform-origin: center center;
|
||||
-o-transform: rotate(0);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
100% {
|
||||
-o-transform-origin: center center;
|
||||
-o-transform: rotate(200deg);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes rotateOut {
|
||||
0% {
|
||||
transform-origin: center center;
|
||||
transform: rotate(0);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
100% {
|
||||
transform-origin: center center;
|
||||
transform: rotate(200deg);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.rotateOut {
|
||||
-webkit-animation-name: rotateOut;
|
||||
-moz-animation-name: rotateOut;
|
||||
-o-animation-name: rotateOut;
|
||||
animation-name: rotateOut;
|
||||
}
|
|
@ -1,62 +0,0 @@
|
|||
@-webkit-keyframes rotateOutDownLeft {
|
||||
0% {
|
||||
-webkit-transform-origin: left bottom;
|
||||
-webkit-transform: rotate(0);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform-origin: left bottom;
|
||||
-webkit-transform: rotate(90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes rotateOutDownLeft {
|
||||
0% {
|
||||
-moz-transform-origin: left bottom;
|
||||
-moz-transform: rotate(0);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
100% {
|
||||
-moz-transform-origin: left bottom;
|
||||
-moz-transform: rotate(90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes rotateOutDownLeft {
|
||||
0% {
|
||||
-o-transform-origin: left bottom;
|
||||
-o-transform: rotate(0);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
100% {
|
||||
-o-transform-origin: left bottom;
|
||||
-o-transform: rotate(90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes rotateOutDownLeft {
|
||||
0% {
|
||||
transform-origin: left bottom;
|
||||
transform: rotate(0);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
100% {
|
||||
transform-origin: left bottom;
|
||||
transform: rotate(90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.rotateOutDownLeft {
|
||||
-webkit-animation-name: rotateOutDownLeft;
|
||||
-moz-animation-name: rotateOutDownLeft;
|
||||
-o-animation-name: rotateOutDownLeft;
|
||||
animation-name: rotateOutDownLeft;
|
||||
}
|
|
@ -1,62 +0,0 @@
|
|||
@-webkit-keyframes rotateOutDownRight {
|
||||
0% {
|
||||
-webkit-transform-origin: right bottom;
|
||||
-webkit-transform: rotate(0);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform-origin: right bottom;
|
||||
-webkit-transform: rotate(-90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes rotateOutDownRight {
|
||||
0% {
|
||||
-moz-transform-origin: right bottom;
|
||||
-moz-transform: rotate(0);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
100% {
|
||||
-moz-transform-origin: right bottom;
|
||||
-moz-transform: rotate(-90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes rotateOutDownRight {
|
||||
0% {
|
||||
-o-transform-origin: right bottom;
|
||||
-o-transform: rotate(0);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
100% {
|
||||
-o-transform-origin: right bottom;
|
||||
-o-transform: rotate(-90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes rotateOutDownRight {
|
||||
0% {
|
||||
transform-origin: right bottom;
|
||||
transform: rotate(0);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
100% {
|
||||
transform-origin: right bottom;
|
||||
transform: rotate(-90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.rotateOutDownRight {
|
||||
-webkit-animation-name: rotateOutDownRight;
|
||||
-moz-animation-name: rotateOutDownRight;
|
||||
-o-animation-name: rotateOutDownRight;
|
||||
animation-name: rotateOutDownRight;
|
||||
}
|
|
@ -1,62 +0,0 @@
|
|||
@-webkit-keyframes rotateOutUpLeft {
|
||||
0% {
|
||||
-webkit-transform-origin: left bottom;
|
||||
-webkit-transform: rotate(0);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform-origin: left bottom;
|
||||
-webkit-transform: rotate(-90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes rotateOutUpLeft {
|
||||
0% {
|
||||
-moz-transform-origin: left bottom;
|
||||
-moz-transform: rotate(0);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
100% {
|
||||
-moz-transform-origin: left bottom;
|
||||
-moz-transform: rotate(-90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes rotateOutUpLeft {
|
||||
0% {
|
||||
-o-transform-origin: left bottom;
|
||||
-o-transform: rotate(0);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
100% {
|
||||
-o-transform-origin: left bottom;
|
||||
-o-transform: rotate(-90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes rotateOutUpLeft {
|
||||
0% {
|
||||
transform-origin: left bottom;
|
||||
transform: rotate(0);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
100% {
|
||||
-transform-origin: left bottom;
|
||||
-transform: rotate(-90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.rotateOutUpLeft {
|
||||
-webkit-animation-name: rotateOutUpLeft;
|
||||
-moz-animation-name: rotateOutUpLeft;
|
||||
-o-animation-name: rotateOutUpLeft;
|
||||
animation-name: rotateOutUpLeft;
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue