diff options
Diffstat (limited to '2015_locomotivebrowser/chrome/animationlocomotive.css')
-rw-r--r-- | 2015_locomotivebrowser/chrome/animationlocomotive.css | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/2015_locomotivebrowser/chrome/animationlocomotive.css b/2015_locomotivebrowser/chrome/animationlocomotive.css new file mode 100644 index 0000000..7c2eea7 --- /dev/null +++ b/2015_locomotivebrowser/chrome/animationlocomotive.css @@ -0,0 +1,22 @@ +@-webkit-keyframes locomotiveanimation { + from { + -webkit-transform:translateX(-100%); + transform:translateX(-100%); + } + to { + -webkit-transform:translateX(100%); + transform:translateX(100%); + + } +} + +@-webkit-keyframes locomotivestart { + from { + -webkit-transform:translateX(0%); + transform:translateX(0%); + } + to { + -webkit-transform:translateX(100%); + transform:translateX(100%); + } +} |