diff options
author | Minkyu Kang <mk7.kang@samsung.com> | 2012-09-10 17:04:29 +0900 |
---|---|---|
committer | Minkyu Kang <mk7.kang@samsung.com> | 2012-09-10 17:04:29 +0900 |
commit | f3bc06001f660ef156e0895f4be1e81a0ac99502 (patch) | |
tree | 4319859b727600c6d8382b95e68a0c0d52cf38f0 /libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.pop.css | |
parent | b087adb7b7df900f9656425e5cea9dc7abdf935b (diff) | |
download | web-ui-fw-f3bc06001f660ef156e0895f4be1e81a0ac99502.tar.gz web-ui-fw-f3bc06001f660ef156e0895f4be1e81a0ac99502.tar.bz2 web-ui-fw-f3bc06001f660ef156e0895f4be1e81a0ac99502.zip |
Revert "Export"
This reverts commit b087adb7b7df900f9656425e5cea9dc7abdf935b.
Diffstat (limited to 'libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.pop.css')
-rw-r--r-- | libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.pop.css | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.pop.css b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.pop.css new file mode 100644 index 00000000..625689e1 --- /dev/null +++ b/libs/js/jquery-mobile-1.1.0/css/structure/jquery.mobile.transition.pop.css @@ -0,0 +1,78 @@ +.pop { + -webkit-transform-origin: 50% 50%; + -moz-transform-origin: 50% 50%; +} + +.pop.in { + -webkit-transform: scale(1); + -moz-transform: scale(1); + opacity: 1; + -webkit-animation-name: popin; + -moz-animation-name: popin; + -webkit-animation-duration: 350ms; + -moz-animation-duration: 350ms; +} + +.pop.out { + -webkit-animation-name: fadeout; + -moz-animation-name: fadeout; + opacity: 0; + -webkit-animation-duration: 100ms; + -moz-animation-duration: 100ms; +} + +.pop.in.reverse { + -webkit-animation-name: fadein; + -moz-animation-name: fadein; +} + +.pop.out.reverse { + -webkit-transform: scale(.8); + -moz-transform: scale(.8); + -webkit-animation-name: popout; + -moz-animation-name: popout; +} + +@-webkit-keyframes popin { + from { + -webkit-transform: scale(.8); + opacity: 0; + } + to { + -webkit-transform: scale(1); + opacity: 1; + } +} + +@-moz-keyframes popin { + from { + -moz-transform: scale(.8); + opacity: 0; + } + to { + -moz-transform: scale(1); + opacity: 1; + } +} + +@-webkit-keyframes popout { + from { + -webkit-transform: scale(1); + opacity: 1; + } + to { + -webkit-transform: scale(.8); + opacity: 0; + } +} + +@-moz-keyframes popout { + from { + -moz-transform: scale(1); + opacity: 1; + } + to { + -moz-transform: scale(.8); + opacity: 0; + } +}
\ No newline at end of file |