The effect is as follows: analyze 1. Here you can see three circles encircling the dot and doing a zooming animation.
<!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; } /* Select attributes whose class names begin with pul*/ .city div[class^="pul"] { /* Center */ 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> After writing, we need to add a zoom animation to the three circles, but you can see that the three circles do not trigger the animation at the same time, so we need to set different delay times for the three circles to define the animation. /*define animation*/ @keyframes pul { 0% {} 50% { width: 20px; height: 20px; opacity: 1; } 100% { width: 50px; height: 50px; opacity: 0; } } Using Animation .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; } The effect is as follows: You can find the background image here by yourself, so I won’t post it here. It costs money to download it. This is the end of this article on how to use CSS to achieve data hotspot effects. For more relevant CSS data hotspot content, please search 123WORDPRESS.COM’s previous articles or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future! |
<<: 37 Tips for a Good User Interface Design (with Pictures)
>>: Steps to repair grub.cfg file corruption in Linux system
[LeetCode] 196.Delete Duplicate Emails Write a SQ...
This article example shares with you the specific...
<br />We usually declare DOCTYPE in HTML in ...
1. Find duplicate rows SELECT * FROM blog_user_re...
Preface When it comes to database transactions, a...
Preface As we all know, by default, the MySQL ins...
Preface: js is a single-threaded language, so it ...
Preface Usually, a "paging" strategy is...
Table of contents 1. About JavaScript 2. JavaScri...
This article introduces 5 ways to solve the 1px b...
Use Nginx to build Tomcat9 cluster and Redis to r...
This article example shares the specific code of ...
Table of contents 1 The role of Apache 2 Apache I...
Method 1: Command line modification We only need ...
In the project (nodejs), multiple data need to be...