owl.transitions.css 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. /*
  2. * Owl Carousel CSS3 Transitions
  3. * v1.3.2
  4. */
  5. .owl-origin {
  6. -webkit-perspective: 1200px;
  7. -webkit-perspective-origin-x: 50%;
  8. -webkit-perspective-origin-y: 50%;
  9. -moz-perspective: 1200px;
  10. -moz-perspective-origin-x: 50%;
  11. -moz-perspective-origin-y: 50%;
  12. perspective: 1200px;
  13. }
  14. /* fade */
  15. .owl-fade-out {
  16. z-index: 10;
  17. -webkit-animation: fadeOut .7s both ease;
  18. -moz-animation: fadeOut .7s both ease;
  19. animation: fadeOut .7s both ease;
  20. }
  21. .owl-fade-in {
  22. -webkit-animation: fadeIn .7s both ease;
  23. -moz-animation: fadeIn .7s both ease;
  24. animation: fadeIn .7s both ease;
  25. }
  26. /* backSlide */
  27. .owl-backSlide-out {
  28. -webkit-animation: backSlideOut 1s both ease;
  29. -moz-animation: backSlideOut 1s both ease;
  30. animation: backSlideOut 1s both ease;
  31. }
  32. .owl-backSlide-in {
  33. -webkit-animation: backSlideIn 1s both ease;
  34. -moz-animation: backSlideIn 1s both ease;
  35. animation: backSlideIn 1s both ease;
  36. }
  37. /* goDown */
  38. .owl-goDown-out {
  39. -webkit-animation: scaleToFade .7s ease both;
  40. -moz-animation: scaleToFade .7s ease both;
  41. animation: scaleToFade .7s ease both;
  42. }
  43. .owl-goDown-in {
  44. -webkit-animation: goDown .6s ease both;
  45. -moz-animation: goDown .6s ease both;
  46. animation: goDown .6s ease both;
  47. }
  48. /* scaleUp */
  49. .owl-fadeUp-in {
  50. -webkit-animation: scaleUpFrom .5s ease both;
  51. -moz-animation: scaleUpFrom .5s ease both;
  52. animation: scaleUpFrom .5s ease both;
  53. }
  54. .owl-fadeUp-out {
  55. -webkit-animation: scaleUpTo .5s ease both;
  56. -moz-animation: scaleUpTo .5s ease both;
  57. animation: scaleUpTo .5s ease both;
  58. }
  59. /* Keyframes */
  60. /*empty*/
  61. @-webkit-keyframes empty {
  62. 0% {
  63. opacity: 1
  64. }
  65. }
  66. @-moz-keyframes empty {
  67. 0% {
  68. opacity: 1
  69. }
  70. }
  71. @keyframes empty {
  72. 0% {
  73. opacity: 1
  74. }
  75. }
  76. @-webkit-keyframes fadeIn {
  77. 0% {
  78. opacity: 0;
  79. }
  80. 100% {
  81. opacity: 1;
  82. }
  83. }
  84. @-moz-keyframes fadeIn {
  85. 0% {
  86. opacity: 0;
  87. }
  88. 100% {
  89. opacity: 1;
  90. }
  91. }
  92. @keyframes fadeIn {
  93. 0% {
  94. opacity: 0;
  95. }
  96. 100% {
  97. opacity: 1;
  98. }
  99. }
  100. @-webkit-keyframes fadeOut {
  101. 0% {
  102. opacity: 1;
  103. }
  104. 100% {
  105. opacity: 0;
  106. }
  107. }
  108. @-moz-keyframes fadeOut {
  109. 0% {
  110. opacity: 1;
  111. }
  112. 100% {
  113. opacity: 0;
  114. }
  115. }
  116. @keyframes fadeOut {
  117. 0% {
  118. opacity: 1;
  119. }
  120. 100% {
  121. opacity: 0;
  122. }
  123. }
  124. @-webkit-keyframes backSlideOut {
  125. 25% {
  126. opacity: .5;
  127. -webkit-transform: translateZ(-500px);
  128. }
  129. 75% {
  130. opacity: .5;
  131. -webkit-transform: translateZ(-500px) translateX(-200%);
  132. }
  133. 100% {
  134. opacity: .5;
  135. -webkit-transform: translateZ(-500px) translateX(-200%);
  136. }
  137. }
  138. @-moz-keyframes backSlideOut {
  139. 25% {
  140. opacity: .5;
  141. -moz-transform: translateZ(-500px);
  142. }
  143. 75% {
  144. opacity: .5;
  145. -moz-transform: translateZ(-500px) translateX(-200%);
  146. }
  147. 100% {
  148. opacity: .5;
  149. -moz-transform: translateZ(-500px) translateX(-200%);
  150. }
  151. }
  152. @keyframes backSlideOut {
  153. 25% {
  154. opacity: .5;
  155. transform: translateZ(-500px);
  156. }
  157. 75% {
  158. opacity: .5;
  159. transform: translateZ(-500px) translateX(-200%);
  160. }
  161. 100% {
  162. opacity: .5;
  163. transform: translateZ(-500px) translateX(-200%);
  164. }
  165. }
  166. @-webkit-keyframes backSlideIn {
  167. 0%, 25% {
  168. opacity: .5;
  169. -webkit-transform: translateZ(-500px) translateX(200%);
  170. }
  171. 75% {
  172. opacity: .5;
  173. -webkit-transform: translateZ(-500px);
  174. }
  175. 100% {
  176. opacity: 1;
  177. -webkit-transform: translateZ(0) translateX(0);
  178. }
  179. }
  180. @-moz-keyframes backSlideIn {
  181. 0%, 25% {
  182. opacity: .5;
  183. -moz-transform: translateZ(-500px) translateX(200%);
  184. }
  185. 75% {
  186. opacity: .5;
  187. -moz-transform: translateZ(-500px);
  188. }
  189. 100% {
  190. opacity: 1;
  191. -moz-transform: translateZ(0) translateX(0);
  192. }
  193. }
  194. @keyframes backSlideIn {
  195. 0%, 25% {
  196. opacity: .5;
  197. transform: translateZ(-500px) translateX(200%);
  198. }
  199. 75% {
  200. opacity: .5;
  201. transform: translateZ(-500px);
  202. }
  203. 100% {
  204. opacity: 1;
  205. transform: translateZ(0) translateX(0);
  206. }
  207. }
  208. @-webkit-keyframes scaleToFade {
  209. to {
  210. opacity: 0;
  211. -webkit-transform: scale(.8);
  212. }
  213. }
  214. @-moz-keyframes scaleToFade {
  215. to {
  216. opacity: 0;
  217. -moz-transform: scale(.8);
  218. }
  219. }
  220. @keyframes scaleToFade {
  221. to {
  222. opacity: 0;
  223. transform: scale(.8);
  224. }
  225. }
  226. @-webkit-keyframes goDown {
  227. from {
  228. -webkit-transform: translateY(-100%);
  229. }
  230. }
  231. @-moz-keyframes goDown {
  232. from {
  233. -moz-transform: translateY(-100%);
  234. }
  235. }
  236. @keyframes goDown {
  237. from {
  238. transform: translateY(-100%);
  239. }
  240. }
  241. @-webkit-keyframes scaleUpFrom {
  242. from {
  243. opacity: 0;
  244. -webkit-transform: scale(1.5);
  245. }
  246. }
  247. @-moz-keyframes scaleUpFrom {
  248. from {
  249. opacity: 0;
  250. -moz-transform: scale(1.5);
  251. }
  252. }
  253. @keyframes scaleUpFrom {
  254. from {
  255. opacity: 0;
  256. transform: scale(1.5);
  257. }
  258. }
  259. @-webkit-keyframes scaleUpTo {
  260. to {
  261. opacity: 0;
  262. -webkit-transform: scale(1.5);
  263. }
  264. }
  265. @-moz-keyframes scaleUpTo {
  266. to {
  267. opacity: 0;
  268. -moz-transform: scale(1.5);
  269. }
  270. }
  271. @keyframes scaleUpTo {
  272. to {
  273. opacity: 0;
  274. transform: scale(1.5);
  275. }
  276. }