|
1875 | 1875 |
|
1876 | 1876 | @-webkit-keyframes flip { |
1877 | 1877 | from { |
1878 | | - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg); |
1879 | | - transform: perspective(400px) rotate3d(0, 1, 0, -360deg); |
| 1878 | + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) |
| 1879 | + rotate3d(0, 1, 0, -360deg); |
| 1880 | + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg); |
1880 | 1881 | -webkit-animation-timing-function: ease-out; |
1881 | 1882 | animation-timing-function: ease-out; |
1882 | 1883 | } |
1883 | 1884 |
|
1884 | 1885 | 40% { |
1885 | | - -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); |
1886 | | - transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); |
| 1886 | + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) |
| 1887 | + rotate3d(0, 1, 0, -190deg); |
| 1888 | + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) |
| 1889 | + rotate3d(0, 1, 0, -190deg); |
1887 | 1890 | -webkit-animation-timing-function: ease-out; |
1888 | 1891 | animation-timing-function: ease-out; |
1889 | 1892 | } |
1890 | 1893 |
|
1891 | 1894 | 50% { |
1892 | | - -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); |
1893 | | - transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); |
| 1895 | + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) |
| 1896 | + rotate3d(0, 1, 0, -170deg); |
| 1897 | + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) |
| 1898 | + rotate3d(0, 1, 0, -170deg); |
1894 | 1899 | -webkit-animation-timing-function: ease-in; |
1895 | 1900 | animation-timing-function: ease-in; |
1896 | 1901 | } |
1897 | 1902 |
|
1898 | 1903 | 80% { |
1899 | | - -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95); |
1900 | | - transform: perspective(400px) scale3d(0.95, 0.95, 0.95); |
| 1904 | + -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) |
| 1905 | + rotate3d(0, 1, 0, 0deg); |
| 1906 | + transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) |
| 1907 | + rotate3d(0, 1, 0, 0deg); |
1901 | 1908 | -webkit-animation-timing-function: ease-in; |
1902 | 1909 | animation-timing-function: ease-in; |
1903 | 1910 | } |
1904 | 1911 |
|
1905 | 1912 | to { |
1906 | | - -webkit-transform: perspective(400px); |
1907 | | - transform: perspective(400px); |
| 1913 | + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) |
| 1914 | + rotate3d(0, 1, 0, 0deg); |
| 1915 | + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg); |
1908 | 1916 | -webkit-animation-timing-function: ease-in; |
1909 | 1917 | animation-timing-function: ease-in; |
1910 | 1918 | } |
1911 | 1919 | } |
1912 | 1920 |
|
1913 | 1921 | @keyframes flip { |
1914 | 1922 | from { |
1915 | | - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg); |
1916 | | - transform: perspective(400px) rotate3d(0, 1, 0, -360deg); |
| 1923 | + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) |
| 1924 | + rotate3d(0, 1, 0, -360deg); |
| 1925 | + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg); |
1917 | 1926 | -webkit-animation-timing-function: ease-out; |
1918 | 1927 | animation-timing-function: ease-out; |
1919 | 1928 | } |
1920 | 1929 |
|
1921 | 1930 | 40% { |
1922 | | - -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); |
1923 | | - transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); |
| 1931 | + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) |
| 1932 | + rotate3d(0, 1, 0, -190deg); |
| 1933 | + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) |
| 1934 | + rotate3d(0, 1, 0, -190deg); |
1924 | 1935 | -webkit-animation-timing-function: ease-out; |
1925 | 1936 | animation-timing-function: ease-out; |
1926 | 1937 | } |
1927 | 1938 |
|
1928 | 1939 | 50% { |
1929 | | - -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); |
1930 | | - transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); |
| 1940 | + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) |
| 1941 | + rotate3d(0, 1, 0, -170deg); |
| 1942 | + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) |
| 1943 | + rotate3d(0, 1, 0, -170deg); |
1931 | 1944 | -webkit-animation-timing-function: ease-in; |
1932 | 1945 | animation-timing-function: ease-in; |
1933 | 1946 | } |
1934 | 1947 |
|
1935 | 1948 | 80% { |
1936 | | - -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95); |
1937 | | - transform: perspective(400px) scale3d(0.95, 0.95, 0.95); |
| 1949 | + -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) |
| 1950 | + rotate3d(0, 1, 0, 0deg); |
| 1951 | + transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) |
| 1952 | + rotate3d(0, 1, 0, 0deg); |
1938 | 1953 | -webkit-animation-timing-function: ease-in; |
1939 | 1954 | animation-timing-function: ease-in; |
1940 | 1955 | } |
1941 | 1956 |
|
1942 | 1957 | to { |
1943 | | - -webkit-transform: perspective(400px); |
1944 | | - transform: perspective(400px); |
| 1958 | + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) |
| 1959 | + rotate3d(0, 1, 0, 0deg); |
| 1960 | + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg); |
1945 | 1961 | -webkit-animation-timing-function: ease-in; |
1946 | 1962 | animation-timing-function: ease-in; |
1947 | 1963 | } |
|
0 commit comments