|
2 | 2 |
|
3 | 3 | /*! |
4 | 4 | * animate.css -http://daneden.me/animate |
5 | | - * Version - 3.6.1 |
| 5 | + * Version - 3.6.2 |
6 | 6 | * Licensed under the MIT license - http://opensource.org/licenses/MIT |
7 | 7 | * |
8 | 8 | * Copyright (c) 2018 Daniel Eden |
|
20 | 20 | animation-iteration-count: infinite; |
21 | 21 | } |
22 | 22 |
|
| 23 | +.animated.delay-1s { |
| 24 | + -webkit-animation-delay: 1s; |
| 25 | + animation-delay: 1s; |
| 26 | +} |
| 27 | + |
| 28 | +.animated.delay-2s { |
| 29 | + -webkit-animation-delay: 2s; |
| 30 | + animation-delay: 2s; |
| 31 | +} |
| 32 | + |
| 33 | +.animated.delay-3s { |
| 34 | + -webkit-animation-delay: 3s; |
| 35 | + animation-delay: 3s; |
| 36 | +} |
| 37 | + |
| 38 | +.animated.delay-4s { |
| 39 | + -webkit-animation-delay: 4s; |
| 40 | + animation-delay: 4s; |
| 41 | +} |
| 42 | + |
| 43 | +.animated.delay-5s { |
| 44 | + -webkit-animation-delay: 5s; |
| 45 | + animation-delay: 5s; |
| 46 | +} |
| 47 | + |
23 | 48 | @-webkit-keyframes bounce { |
24 | 49 | from, |
25 | 50 | 20%, |
|
1913 | 1938 |
|
1914 | 1939 | @-webkit-keyframes flip { |
1915 | 1940 | from { |
1916 | | - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg); |
1917 | | - transform: perspective(400px) rotate3d(0, 1, 0, -360deg); |
| 1941 | + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) |
| 1942 | + rotate3d(0, 1, 0, -360deg); |
| 1943 | + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg); |
1918 | 1944 | -webkit-animation-timing-function: ease-out; |
1919 | 1945 | animation-timing-function: ease-out; |
1920 | 1946 | } |
1921 | 1947 |
|
1922 | 1948 | 40% { |
1923 | | - -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); |
1924 | | - transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); |
| 1949 | + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) |
| 1950 | + rotate3d(0, 1, 0, -190deg); |
| 1951 | + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) |
| 1952 | + rotate3d(0, 1, 0, -190deg); |
1925 | 1953 | -webkit-animation-timing-function: ease-out; |
1926 | 1954 | animation-timing-function: ease-out; |
1927 | 1955 | } |
1928 | 1956 |
|
1929 | 1957 | 50% { |
1930 | | - -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); |
1931 | | - transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); |
| 1958 | + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) |
| 1959 | + rotate3d(0, 1, 0, -170deg); |
| 1960 | + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) |
| 1961 | + rotate3d(0, 1, 0, -170deg); |
1932 | 1962 | -webkit-animation-timing-function: ease-in; |
1933 | 1963 | animation-timing-function: ease-in; |
1934 | 1964 | } |
1935 | 1965 |
|
1936 | 1966 | 80% { |
1937 | | - -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95); |
1938 | | - transform: perspective(400px) scale3d(0.95, 0.95, 0.95); |
| 1967 | + -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) |
| 1968 | + rotate3d(0, 1, 0, 0deg); |
| 1969 | + transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) |
| 1970 | + rotate3d(0, 1, 0, 0deg); |
1939 | 1971 | -webkit-animation-timing-function: ease-in; |
1940 | 1972 | animation-timing-function: ease-in; |
1941 | 1973 | } |
1942 | 1974 |
|
1943 | 1975 | to { |
1944 | | - -webkit-transform: perspective(400px); |
1945 | | - transform: perspective(400px); |
| 1976 | + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) |
| 1977 | + rotate3d(0, 1, 0, 0deg); |
| 1978 | + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg); |
1946 | 1979 | -webkit-animation-timing-function: ease-in; |
1947 | 1980 | animation-timing-function: ease-in; |
1948 | 1981 | } |
1949 | 1982 | } |
1950 | 1983 |
|
1951 | 1984 | @keyframes flip { |
1952 | 1985 | from { |
1953 | | - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg); |
1954 | | - transform: perspective(400px) rotate3d(0, 1, 0, -360deg); |
| 1986 | + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) |
| 1987 | + rotate3d(0, 1, 0, -360deg); |
| 1988 | + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg); |
1955 | 1989 | -webkit-animation-timing-function: ease-out; |
1956 | 1990 | animation-timing-function: ease-out; |
1957 | 1991 | } |
1958 | 1992 |
|
1959 | 1993 | 40% { |
1960 | | - -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); |
1961 | | - transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); |
| 1994 | + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) |
| 1995 | + rotate3d(0, 1, 0, -190deg); |
| 1996 | + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) |
| 1997 | + rotate3d(0, 1, 0, -190deg); |
1962 | 1998 | -webkit-animation-timing-function: ease-out; |
1963 | 1999 | animation-timing-function: ease-out; |
1964 | 2000 | } |
1965 | 2001 |
|
1966 | 2002 | 50% { |
1967 | | - -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); |
1968 | | - transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); |
| 2003 | + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) |
| 2004 | + rotate3d(0, 1, 0, -170deg); |
| 2005 | + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) |
| 2006 | + rotate3d(0, 1, 0, -170deg); |
1969 | 2007 | -webkit-animation-timing-function: ease-in; |
1970 | 2008 | animation-timing-function: ease-in; |
1971 | 2009 | } |
1972 | 2010 |
|
1973 | 2011 | 80% { |
1974 | | - -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95); |
1975 | | - transform: perspective(400px) scale3d(0.95, 0.95, 0.95); |
| 2012 | + -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) |
| 2013 | + rotate3d(0, 1, 0, 0deg); |
| 2014 | + transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) |
| 2015 | + rotate3d(0, 1, 0, 0deg); |
1976 | 2016 | -webkit-animation-timing-function: ease-in; |
1977 | 2017 | animation-timing-function: ease-in; |
1978 | 2018 | } |
1979 | 2019 |
|
1980 | 2020 | to { |
1981 | | - -webkit-transform: perspective(400px); |
1982 | | - transform: perspective(400px); |
| 2021 | + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) |
| 2022 | + rotate3d(0, 1, 0, 0deg); |
| 2023 | + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg); |
1983 | 2024 | -webkit-animation-timing-function: ease-in; |
1984 | 2025 | animation-timing-function: ease-in; |
1985 | 2026 | } |
|
2248 | 2289 | 80% { |
2249 | 2290 | -webkit-transform: skewX(-5deg); |
2250 | 2291 | transform: skewX(-5deg); |
2251 | | - opacity: 1; |
2252 | 2292 | } |
2253 | 2293 |
|
2254 | 2294 | to { |
2255 | 2295 | -webkit-transform: translate3d(0, 0, 0); |
2256 | 2296 | transform: translate3d(0, 0, 0); |
2257 | | - opacity: 1; |
2258 | 2297 | } |
2259 | 2298 | } |
2260 | 2299 |
|
|
2274 | 2313 | 80% { |
2275 | 2314 | -webkit-transform: skewX(-5deg); |
2276 | 2315 | transform: skewX(-5deg); |
2277 | | - opacity: 1; |
2278 | 2316 | } |
2279 | 2317 |
|
2280 | 2318 | to { |
2281 | 2319 | -webkit-transform: translate3d(0, 0, 0); |
2282 | 2320 | transform: translate3d(0, 0, 0); |
2283 | | - opacity: 1; |
2284 | 2321 | } |
2285 | 2322 | } |
2286 | 2323 |
|
|
0 commit comments