Home Web Front-end CSS Tutorial css3 implements wifi signal shape

css3 implements wifi signal shape

Mar 21, 2018 pm 04:13 PM
css3 wifi

This time I will bring you css3 to implement wifi signal shape. What are the precautions for implementing wifi signal shape in css3? The following is a practical case, let's take a look.

Organize the documents, search out a css3 code that implements the effect of gradually increasing the wifi signal, and briefly organize and streamline it for sharing.

Rendering

The following is the implementation code:

##

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

<!DOCTYPE html>

<meta charset="utf-8">

<html>

<head>

    <title>wifi信号</title>

    <style type="text/css">

        *{

            margin: 0;

            padding: 0;

        }

        .box {

            width: 240px;

            height: 240px;

            box-sizing: border-box;

            position: relative;

            margin: 100px auto;

        }

        .wifi-symbol {

            width: 200px;

            height: 200px;

            margin-left: 18px;

            box-sizing: border-box;

            overflow: hidden;

            transform: rotate(45deg);

 

        }

        .wifi-circle {

            border: 10px solid #ccc;

            border-radius: 50%;

            position: absolute;

        }

        .first {

            width: 260px;

            height: 260px;

            top: 0;

            left: 0;

            animation: run1 4s linear infinite;

        }

        @keyframes run1 {

            0% {

                border-color: #ccc;

            }

            25% {

                border-color: #ccc;

            }

            50% {

                border-color: #ccc;

            }

            75% {

                border-color: #ccc;

            }

            100% {

                border-color: #97a8e6;

            }

        }

        .second {

            width: 200px;

            height: 200px;

            top: 60px;

            left: 60px;

            animation: run2 4s linear infinite;

        }

        @keyframes run2 {

            0% {

                border-color: #ccc;

            }

            25% {

                border-color: #ccc;

            }

            50% {

                border-color: #ccc;

            }

            75% {

                border-color: #97a8e6;

            }

            100% {

                border-color: #ccc;

            }

        }

        .third {

            width: 140px;

            height: 140px;

            top: 120px;

            left: 120px;

            animation: run3 4s linear infinite;

        }

        @keyframes run3 {

            0% {

                border-color: #ccc;

            }

            25% {

                border-color: #ccc;

            }

            50% {

                border-color: #97a8e6;

            }

            75% {

                border-color: #ccc;

            }

            100% {

                border-color: #ccc;

            }

        }

        .fourth {

            width: 20px;

            height: 20px;

            background: #ccc;

            top: 180px;

            left: 180px;

            animation: run4 4s linear infinite;

        }

        @keyframes run4 {

            0% {

                background: #ccc;

                border-color: #ccc;

            }

            25% {

                background: #97a8e6;

                border-color: #97a8e6;

            }

            50% {

                background: #ccc;

                border-color: #ccc;

            }

            75% {

                background: #ccc;

                border-color: #ccc;

            }

            100% {

                background: #ccc;

                border-color: #ccc;

            }

        }

    </style>

</head>

<body>

    <p class="box">

        <p class="wifi-symbol">

          <p class="wifi-circle first"></p>

          <p class="wifi-circle second"></p>

          <p class="wifi-circle third"></p>

          <p class="wifi-circle fourth">

        </p>

    </p>

 

</body>

</html>

Copy after login

I believe you will read the case in this article I have mastered the method. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

Using CSS3 to achieve barrage effects

Unpopular CSS properties you don’t know


The above is the detailed content of css3 implements wifi signal shape. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What to do if the HP printer cannot connect to wifi - What to do if the HP printer cannot connect to wifi What to do if the HP printer cannot connect to wifi - What to do if the HP printer cannot connect to wifi Mar 06, 2024 pm 01:00 PM

When many users use HP printers, they are not familiar with what to do if the HP printer cannot connect to wifi. Below, the editor will bring you solutions to the problem of HP printers not connecting to wifi. Let us take a look below. Set the mac address of the HP printer to automatically select and automatically join the network. Check to change the network configuration. Use dhcp to enter the password to connect to the HP printer. It shows that it is connected to wifi.

Why is there an exclamation mark on mobile wifi? Why is there an exclamation mark on mobile wifi? Sep 18, 2023 pm 04:05 PM

The reason why there is an exclamation mark on the mobile wifi may be that it cannot connect to the Internet, the signal is weak, authentication issues and IP address conflicts, etc. Detailed introduction: 1. Unable to connect to the Internet. If an exclamation mark appears on the Wi-Fi icon, it may be because the mobile phone cannot connect to the Internet. This may be caused by a router disconnection, network failure, or mobile phone settings problem; 2. The signal is weak. If an exclamation mark appears on the Wi-Fi icon, it may be caused by a weak Wi-Fi signal. This may be due to being too far from the router, being blocked by obstacles, or interfering with the signal, etc.

Why is my home wifi showing 'unsafe network'? Why is my home wifi showing 'unsafe network'? Nov 15, 2023 pm 02:39 PM

The reasons are: 1. There is a problem with the WiFi itself; 2. The router may be overheated or damaged; 3. The broadband may be in arrears, resulting in the inability to access the Internet; 4. The WiFi name contains Chinese characters, causing some computers to be unable to connect to the Internet; 5. Computer system problems; 6 , IP address setting problem; 7. The wireless network does not have a wireless password set, etc. Solution: 1. Check the WiFi connection to make sure the device is connected to the correct WiFi network; 2. Check the router settings, you can try to reset the router, make sure the SSID and password are correct, etc.

Why can't I connect to Wi-Fi in Windows 10? Why can't I connect to Wi-Fi in Windows 10? Jan 16, 2024 pm 04:18 PM

When we use the win10 operating system to connect to a wifi wireless network, we will find a prompt that the wifi network cannot be connected and is restricted. For this kind of problem, I think you can try to find your own network in the Network and Sharing Center, and then make a series of adjustments. Let’s take a look at the specific steps to see how the editor did it~Why can’t Win10 connect to wifi? Method 1: 1. Right-click the wireless WIFI icon in the notification area at the bottom of the computer screen, select “Open Network and Internet Settings”, and then Click the "Change Adapter Options" button. 2. In the pop-up network connection interface, look for the wireless connection named "WLAN", right-click again, and select "Close" (or "Disable"). 3. Wait

Why can't I access the Internet even though my wifi is connected? Why can't I access the Internet even though my wifi is connected? Dec 07, 2023 pm 05:00 PM

Reasons why WiFi is connected but cannot access the Internet: 1. WiFi signal is weak; 2. IP address conflict; 3. DNS server problem; 4. Router failure; 5. Network provider problem; 6. Problem with the WiFi network itself; 7. Router problem ; 8. Equipment network setting problems; 9. Signal interference or obstacles; 10. Equipment problems. Detailed introduction: 1. The WiFi signal is weak. The strength of the WiFi signal directly affects the stability and speed of the network. If the connected WiFi signal is weak, it may cause the network connection to be unstable or unable to access the Internet, etc.

How to solve the problem of not being able to enter the wifi password in win10 How to solve the problem of not being able to enter the wifi password in win10 Dec 30, 2023 pm 05:43 PM

Not being able to enter the password for win10wifi is a very depressing problem. Usually it is the card owner. Just reopen or restart the computer. For users who still can't solve the problem, hurry up and take a look at the detailed solution tutorial. Win10 Wifi Unable to Enter Password Tutorial Method 1: 1. Unable to enter password may be a problem with our keyboard connection, carefully check whether the keyboard can be used. 2. If we need to use the keypad to enter numbers, we also need to check whether the keypad is locked. Method 2: Note: Some users reported that the computer could not be turned on after performing this operation. In fact, it is not the cause of this setting, but the problem of the computer system itself. After performing this operation, it will not affect the normal startup of the computer, and the computer system will not

What is the reason why the wifi function cannot be turned on? Attachment: How to fix the wifi function that cannot be turned on What is the reason why the wifi function cannot be turned on? Attachment: How to fix the wifi function that cannot be turned on Mar 14, 2024 pm 03:34 PM

Nowadays, in addition to data and wifi, mobile phones have two ways to access the Internet, and OPPO mobile phones are no exception. But what should we do if we can’t turn on the wifi function when using it? Don't worry yet, you might as well read this tutorial, it will help you! What should I do if my phone’s wifi function cannot be turned on? It may be because there is a slight delay when the WLAN switch is turned on. Please wait 2 seconds to see if it is turned on. Do not click continuously. 1. You can try to enter "Settings>WLAN" and try to turn on the WLAN switch again. 2. Please turn on/off airplane mode and try to turn on the WLAN switch again. 3. Restart the phone and try to see if WLAN can be turned on normally. 4. It is recommended to try restoring factory settings after backing up data. If none of the above methods solve your problem, please bring the purchased

Solution to Win11 unable to display WiFi Solution to Win11 unable to display WiFi Jan 29, 2024 pm 04:03 PM

WiFi is an important medium for us to surf the Internet, but many users have recently reported that Win11 does not display WiFi, so what should we do? Users can directly click on the service under the search option, and then select the startup type to change to automatic or click on the network and internet on the left to operate. Let this site carefully introduce to users the analysis of the problem of Win11 computer not displaying the wifi list. Method 1 to resolve the problem that the Wi-Fi list cannot be displayed on the win11 computer: 1. Click the search option. 3. Then we change the startup type to automatic. Method 2: 1. Press and hold win+i to enter settings. 2. Click Network and Internet on the left. 4. Subsequently

See all articles