您好,登錄后才能下訂單哦!
這篇文章主要介紹使用css實現數據熱點效果的案例,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
效果如下:
分析
1.這里看到的大概有三個圈 圍著點在做放大動畫
所以我們寫四個盒子 點+3個圈
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> .city { width: 200px; height: 200px; background-color: gray; position: relative; } .pul { width: 8px; height: 8px; background-color: #09f; border-radius: 50%; top: 0; bottom: 0; left: 0; right: 0; margin: auto; position: absolute; } /* 選擇類名有pul開頭的屬性 */ .city div[class^="pul"] { /* 居中 */ top: 0; bottom: 0; left: 0; right: 0; margin: auto; position: absolute; width: 8px; height: 8px; border-radius: 50%; box-shadow: 0px 0px 10px #09f; } </style> </head> <body> <div class="city"> <div class="pul"></div> <div class="pul1"></div> <div class="pul2"></div> <div class="pul3"></div> </div> </body> </html>
寫完后 我們是需要給這三個圈 加放大的動畫 但是可以看到 三個圈并不是同時觸發動畫的 所以需要給三個圈 設置不同的延遲時間 定義動畫
/*定義動畫*/ @keyframes pul { 0% {} 50% { width: 20px; height: 20px; opacity: 1; } 100% { width: 50px; height: 50px; opacity: 0; } }
使用動畫
.city>div:nth-child(2) { animation: pul 2s .5s linear infinite; } .city>div:nth-child(3) { animation: pul 2s 1s linear infinite; } .city>div:nth-child(4) { animation: pul 2s 1.5s linear infinite; }
效果如下:
以上是“使用css實現數據熱點效果的案例”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。