图片素材的
有素材吗。想敲一遍代码。
有素材吗。想敲一遍代码。
2015-11-24
除了那张地图,那个跳动的小圆点可以用纯CSS3来写出来,更加方便:
<!DOCTYPE html> <html> <head> <style> .dot{ height: 50px; width:50px; background: red; border-radius: 50%; animation: bling 0.6s infinite ; -webkit-animation: bling 0.6s infinite ; -o-animation: bling 0.6s infinite ; -moz-animation: bling 0.6s infinite ; } @keyframes bling{ from{transform:scale(0.0);} to{transform:scale(1.0);opacity: 1;} } @-webkit-keyframes bling{ from{-webkit-transform:scale(0.0);} to{-webkit-transform:scale(1.0);opacity: 1;} } </style> </head> <body> <div class="dot"></div> </body> </html>
举报