Skip to content

Commit c643e45

Browse files
author
Jare Fagbemi
committed
Fixed conflicts and merged
2 parents 087c92f + 1d04010 commit c643e45

File tree

7 files changed

+53
-3
lines changed

7 files changed

+53
-3
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ http://api.jquery.com/one/
3030
$('#yourElement').one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', doSomething);
3131
```
3232

33+
**Note:** `jQuery#one` is used when you want to execute the event handler at most *once*. More information [here](http://api.jquery.com/one/).
34+
3335
You can change the duration of your animations, add a delay or change the number of times that it plays:
3436

3537
```css

animate-config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@
8787
"slideOutLeft": true,
8888
"slideOutRight": true,
8989
"slideOutUp": true,
90+
"slideInUp": true,
9091
"slideOutDown": true
9192
},
9293

animate.css

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2635,6 +2635,39 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
26352635
animation-name: slideOutUp;
26362636
}
26372637

2638+
@-webkit-keyframes slideInUp {
2639+
0% {
2640+
-webkit-transform: translateY(2000px);
2641+
transform: translateY(2000px);
2642+
}
2643+
2644+
100% {
2645+
opacity: 0;
2646+
-webkit-transform: translateY(0);
2647+
transform: translateY(0);
2648+
}
2649+
}
2650+
2651+
@keyframes slideInUp {
2652+
0% {
2653+
-webkit-transform: translateY(2000px);
2654+
-ms-transform: translateY(2000px);
2655+
transform: translateY(2000px);
2656+
}
2657+
2658+
100% {
2659+
opacity: 0;
2660+
-webkit-transform: translateY(0);
2661+
-ms-transform: translateY(0);
2662+
transform: translateY(0);
2663+
}
2664+
}
2665+
2666+
.slideInUp {
2667+
-webkit-animation-name: slideInUp;
2668+
animation-name: slideInUp;
2669+
}
2670+
26382671
@-webkit-keyframes slideOutDown {
26392672
0% {
26402673
-webkit-transform: translateY(0);

animate.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "animate.css",
3-
"version": "3.1.0",
3+
"version": "3.1.1",
44
"main": "./animate.css"
55
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "animate.css",
3-
"version": "3.0.0",
3+
"version": "3.1.1",
44
"devDependencies": {
55
"grunt": "~0.4.1",
66
"grunt-autoprefixer": "~0.4.0",

source/sliders/slideInUp.css

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
@keyframes slideInUp {
2+
0% {
3+
transform: translateY(2000px);
4+
}
5+
6+
100% {
7+
opacity: 0;
8+
transform: translateY(0);
9+
}
10+
}
11+
12+
.slideInUp {
13+
animation-name: slideInUp;
14+
}

0 commit comments

Comments
 (0)