Here is a text hovering and jumping effect implemented with CSS 3.0. The effect is as follows: The following is the code implementation, you are welcome to copy, paste and collect it. <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>CSS 3.0 text hover and bounce effects</title> <style> * { margin: 0; padding: 0; } body { display: flex; justify-content: center; align-items: center; min-height: 100vh; background: #000; } .loader { position: relative; } .loader span { position: relative; font-size: 2em; color: #fff; display: inline-block; text-transform:uppercase; animation: animate 2s ease-in-out infinite; animation-delay: calc(0.1s * var(--i)); animation-play-state: paused; } .loader:hover span { animation-play-state: running; } @keyframes animate { 0%, 40%, 100% { transform: translateY(0); } 20% { transform: translateY(-50px); } } </style> </head> <body> <div class="loader"> <span style="--i:1;">A</span> <span style="--i:2;">n</span> <span style="--i:3;">i</span> <span style="--i:4;">m</span> <span style="--i:5;">a</span> <span style="--i:6;">t</span> <span style="--i:7;">i</span> <span style="--i:8;">o</span> <span style="--i:9;">n</span> <span style="--i:10;">_</span> <span style="--i:11;">P</span> <span style="--i:12;">l</span> <span style="--i:13;">a</span> <span style="--i:14;">y</span> <span style="--i:15;">_</span> <span style="--i:16;">S</span> <span style="--i:17;">t</span> <span style="--i:18;">a</span> <span style="--i:19;">t</span> <span style="--i:20;">e</span> <span style="--i:21;">.</span> </div> </body> </html> Summarize This is the end of this article about CSS 3.0 text hover jump special effects code. For more relevant CSS 3.0 text hover jump content, please search 123WORDPRESS.COM’s previous articles or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future! |
<<: Element-ui directly clicks on the cell in the table to edit
>>: A brief discussion on how to solve the depends_on order problem in Docker-compose
<br /> The website access speed can directly...
Chatbots can save a lot of manual work and can be...
After writing these six articles, I started to fee...
I have never used apache. After I started working...
Study plans are easily interrupted and difficult ...
Table of contents 1. Description 2. Installation ...
Table of contents MySQL Common Functions 1. Numer...
Table of contents Written in front Requirements A...
Today I recommend such an open source tool for ex...
We all have files stored on our computers -- dire...
Today I found this prompt when I was running and ...
Dockerfile is a text file used to build an image....
Table of contents What is MVCC Mysql lock and tra...
Docker allows network services to be provided by ...
Summary of common functions of PostgreSQL regular...