CSS3地圖動(dòng)態(tài)實(shí)例代碼(圓圈向外擴(kuò)散)

實(shí)例效果圖
實(shí)例說(shuō)明:在地圖上定位多個(gè)不同的點(diǎn),然后從點(diǎn)中央向外擴(kuò)散光圈。
實(shí)例要點(diǎn):主要考察CSS3中動(dòng)畫(huà)的使用
主要代碼:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>地圖</title> <style> *{padding:0px;margin: 0px;} .bg{width: 100%;height:770px;position: relative;} .bg img{width: 100%;height: 100%;} .bg .content{width: 748px;height:618px;position: absolute;left: 410px;top: 60px;} .bg .content div{background:#009FD9;width: 10px;height: 10px;border-radius:50%;position: relative;} .bg .content p{position: absolute;width: 10px;height: 10px;border-radius:50%;animation: myfirst 1.5s infinite;box-shadow: 0px 0px 1px #009FD9; } .bg .content span{position: absolute;display:block;width: 10px;height: 10px;border-radius:50%;animation: myfirst 1.5s infinite;box-shadow: 0px 0px 1px #009FD9; animation-delay: 0.5s;} .bg .content .one{position: absolute;left:600px; top:100px;} .bg .content .two{position: absolute;left:550px; top:150px;} .bg .content .three{position: absolute;left:500px; top:200px;} .bg .content .four{position: absolute;left:450px; top:250px;} .bg .content .five{position: absolute;left:400px; top:300px;} .bg .content .six{position: absolute;left:400px; top:350px;} .bg .content .seven{background: #FF9900;position: absolute;left:350px; top:300px;} .bg .content .eight{background: #FF9900;position: absolute;left:400px; top:250px;} .bg .content .nine{background: #A2A9B4;position: absolute;left:250px; top:200px;} .bg .content .ten{background: #A2A9B4;position: absolute;left:300px; top:350px;} @keyframes myfirst{ 20% {transform: scale(2);} 40% {transform: scale(3);} 60% {transform: scale(4);} 80% {transform: scale(5);} 100% {transform: scale(6);} } </style> </head> <body> <div class="bg"><img src="bg.jpg" alt=""> <div class="content"><img src="bg1.png" alt=""> <div class="one"><p></p><span></span></div> <div class="two"><p></p><span></span></div> <div class="three"><p></p><span></span></div> <div class="four"><p></p><span></span></div> <div class="five"><p></p><span></span></div> <div class="six"><p></p><span></span></div> <div class="seven"><p></p><span></span></div> <div class="eight"><p></p><span></span></div> <div class="nine"><p></p><span></span></div> <div class="ten"><p></p><span></span></div> </div> </div> </body> </html>
注意事項(xiàng):
1.不同的點(diǎn)通過(guò)定位分散排布在地圖上
2.每個(gè)點(diǎn)內(nèi)存放著兩個(gè)不同的隱藏點(diǎn),隱藏點(diǎn)通過(guò)動(dòng)畫(huà)延時(shí)功能形成點(diǎn)擴(kuò)散的動(dòng)態(tài)效果
3.點(diǎn)外擴(kuò)散的擴(kuò)散圈由隱藏點(diǎn)的陰影構(gòu)成,然后通過(guò)動(dòng)畫(huà)一點(diǎn)一點(diǎn)擴(kuò)大
總結(jié)
以上所述是小編給大家介紹的CSS3地圖動(dòng)態(tài)實(shí)例代碼(圓圈向外擴(kuò)散),希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!
相關(guān)文章
純css3實(shí)現(xiàn)的地圖位置標(biāo)記動(dòng)態(tài)顯示效果源碼
這是一款基于純css3實(shí)現(xiàn)的地圖位置標(biāo)記動(dòng)態(tài)顯示效果源碼。畫(huà)面上類(lèi)似百度地圖位置標(biāo)記的圖標(biāo)呈現(xiàn)垂直緩沖降落的動(dòng)畫(huà)效果,且降落后位置固定的圖標(biāo)底部帶有擴(kuò)散顯示圓環(huán)的動(dòng)2017-05-29使用CSS3設(shè)計(jì)地圖上的雷達(dá)定位提示效果
這篇文章主要介紹了使用CSS3設(shè)計(jì)地圖上的雷達(dá)定位提示效果的實(shí)例,即文中所說(shuō)的水波漣漪效果,能夠控制寬高和透明度,需要的朋友可以參考下2016-04-05html5+css3實(shí)現(xiàn)的世界地圖區(qū)域劃分效果源碼
這是一款基于html5+css3實(shí)現(xiàn)的世界地圖區(qū)域劃分效果源碼,是一款鼠標(biāo)移動(dòng)地圖上高亮顯示對(duì)應(yīng)區(qū)域劃分塊效果的特效代碼??捎行ы憫?yīng)鼠標(biāo)事件實(shí)現(xiàn)地圖不規(guī)則形狀的樣式變換功2015-11-12