您好,登錄后才能下訂單哦!
這篇文章主要介紹如何使用純CSS3的transform實現心動效果,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
送一個愛心表示我對你心動,使用純 CSS3 的transform
實現:
css 部分
html,body { height:100%; } body { margin:0; padding:0; background:#ffa5a5; display: flex; justify-content: center; align-items: center; } .chest { width:500px; height:500px; position:relative; display: flex; justify-content: center; align-items: center; } .heart { position:absolute; z-index:2; background:linear-gradient(-90deg,#F50A45 0%,#d5093c 40%); animation:beat 0.7s ease 0s infinite normal; } .heart.center { background:linear-gradient(-45deg,#B80734 0%,#d5093c 40%); } .heart.top { z-index:3; } .sided { top:100px; width:220px; height:220px; border-radius:110px; } .center { width:210px; height:210px; bottom:100px; left:145px; transform:rotateZ(225deg); } .left { left:62px; } .right { right:62px; } .title{ z-index: 999; text-shadow: 5px 5px 5px #ff7f00; } @keyframes beat { 0% { transform:scale(1) rotate(225deg); box-shadow:0 0 40px #d5093c; } 50% { transform:scale(1.2) rotate(225deg); box-shadow:0 0 70px #d5093c; } 100% { transform:scale(1) rotate(225deg); box-shadow:0 0 40px #d5093c; } }
html 部分
<html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>W3Cschool億速云</title> <link href="./flower.css" type="text/css" rel="stylesheet"> </head> <body> <div class="chest"> <div class="heart left sided top"></div> <div class="heart center"></div> <div class="heart right sided"></div> <h2 class="title">W3Cschool億速云</h2> </div> </body> </html>
以上是“如何使用純CSS3的transform實現心動效果”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。