-
-
Save daneden/2157388 to your computer and use it in GitHub Desktop.
Transition aliasing bug
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
/* Transition aliasing bug */ | |
body { | |
font-family: Helvetica, Helvetica Neue, Arial, sans-serif; | |
font-weight: 700; | |
} | |
div { | |
width: 100px; | |
height: 100px; | |
background-color: blue; | |
color: #fff; | |
transition: 1s ease; | |
position: relative; | |
} | |
div:hover { | |
transform: translate(100px); | |
} |
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
<div>Hover me</div> | |
Watch this text! |
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
{"view":"split-vertical","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment