Created
May 23, 2016 03:09
-
-
Save anonymous/3aa3648907278f404e268b94fe2125c1 to your computer and use it in GitHub Desktop.
Prototype created with DevTools Prototyper
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
.box { | |
width: 300px; | |
height: 300px; | |
border: 1px solid #000; | |
background: -moz-repeating-linear-gradient(-30deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 150px, rgba(255, 255, 255, 0) 200px, rgba(255, 255, 255, 0.6) 200px, rgba(255, 255, 255, 0.6) 215px) no-repeat -300px 0, #000 no-repeat; | |
margin: 40px auto; | |
transition: all 1s ease; | |
} | |
.box:hover { | |
background-position: 300px 10px, 0 0; | |
} |
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 class="box"></div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment