Skip to content

Instantly share code, notes, and snippets.

@rinsuki
Created January 15, 2016 04:04
Show Gist options
  • Save rinsuki/4f9b5a3253e724f8a677 to your computer and use it in GitHub Desktop.
Save rinsuki/4f9b5a3253e724f8a677 to your computer and use it in GitHub Desktop.
<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