Created
January 2, 2012 21:52
-
-
Save jcsrb/1552272 to your computer and use it in GitHub Desktop.
Untitled
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
| #heart { | |
| transform: rotate(45deg); | |
| position: relative; | |
| width: 250px; | |
| height: 250px; | |
| margin: 200px auto; | |
| } | |
| #heart div { | |
| background-color: #ff0033; | |
| width: 250px; | |
| height: 250px; | |
| position: absolute; | |
| } | |
| .cirlce { | |
| border-radius: 125px; | |
| } | |
| #c1 { | |
| top: -125px; | |
| animation: c1a 2s ease-in-out 0 infinite alternate; | |
| } | |
| #c2 { | |
| right: -125px; | |
| animation: c2a 2s ease-in-out 1s infinite alternate; | |
| } | |
| @keyframes c1a { | |
| 0% { top: -125px; } | |
| 25% { top: -125px; } | |
| 75% { top: 125px; } | |
| 100% { top: 125px; } | |
| } | |
| @keyframes c2a { | |
| 0% { right: -125px; } | |
| 25% { right: -125px; } | |
| 75% { right: 125px; } | |
| 100% { right: 125px; } | |
| } | |
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 id="heart"> | |
| <div class="square"></div> | |
| <div class="cirlce" id="c1"></div> | |
| <div class="cirlce" id="c2"></div> | |
| </div> |
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","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment