Created
December 11, 2015 12:25
-
-
Save paulohenriquesn/ca849c5a1f99279abd24 to your computer and use it in GitHub Desktop.
Animate CSS/HTML [Text @Keyframe]
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
style <style type="text/css"> | |
#acess { | |
color: white; | |
} | |
#acess { | |
width:100%; | |
overflow:hidden; | |
} | |
#acess p { | |
animation: slide-left 7s; | |
} | |
@keyframes slide-left { | |
from { | |
margin-left: 100%; | |
width: 300%; | |
} | |
to { | |
margin-left: 0%; | |
width: 100%; | |
} | |
} | |
#acess:hover { | |
cursor: pointer; | |
} | |
</style> | |
<div id="acess"> | |
<p>Text.</p> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment