About
Explore
Events & Classes
Support Us
Join
Sign In
purple_ghost
View Project Page
Run
Fullscreen
Giant Heart
HTML
CSS
JS
<!DOCTYPE html> <html> <head> <title>Heart</title> </head> <body> <div class="heart"></div> </body> </html>
.heart { position: absolute; margin: auto; top: 0; right: 0; bottom: 0; left: 0; background-color: pink; height: 300px; width: 300px; transform: rotate(-45deg); animation-name: beat; animation-duration: 1s; animation-iteration-count: infinite; } .heart:after { background-color: pink; content: ""; border-radius: 50%; position: absolute; width: 300px; height: 300px; top: 0px; left: 150px; } .heart:before { background-color: pink; content: ""; border-radius: 50%; position: absolute; width: 300px; height: 300px; top: -150px; left: 0px; }