Created
January 15, 2016 04:04
-
-
Save rinsuki/4f9b5a3253e724f8a677 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>transition Test</title> | |
<style> | |
.a{ | |
transition:all 0.5s; | |
} | |
.a:hover{ | |
transition:all 0s; | |
background:black; | |
color:white; | |
} | |
.b{ | |
transition:all 0.5s; | |
} | |
.b:hover{ | |
transition:all 0; | |
background:black; | |
color:white; | |
} | |
</style> | |
</head> | |
<body> | |
<h1>CSS transition Test</h1> | |
<div class="a">transition:all 0s;</div> | |
<div class="b">transition:all 0;</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment