CSS 3.0 text hover jump special effects code

CSS 3.0 text hover jump special effects code

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

Recommend

Key issues and solutions for web page access speed

<br /> The website access speed can directly...

jQuery Ajax chatbot implementation case study

Chatbots can save a lot of manual work and can be...

Initial summary of the beginner's website building tutorial

After writing these six articles, I started to fee...

Detailed explanation of the pitfalls of Apache domain name configuration

I have never used apache. After I started working...

MySQL Optimization: InnoDB Optimization

Study plans are easily interrupted and difficult ...

How to use Vue-router routing

Table of contents 1. Description 2. Installation ...

MySQL detailed summary of commonly used functions

Table of contents MySQL Common Functions 1. Numer...

Vue implements various ideas for detecting sensitive word filtering components

Table of contents Written in front Requirements A...

Docker image analysis tool dive principle analysis

Today I recommend such an open source tool for ex...

Linux command line quick tips: How to locate a file

We all have files stored on our computers -- dire...

Solution to MySQL Installer is running in Community mode

Today I found this prompt when I was running and ...

Dockerfile text file usage example analysis

Dockerfile is a text file used to build an image....

Detailed explanation of the MySQL MVCC mechanism principle

Table of contents What is MVCC Mysql lock and tra...

How to bind Docker container to external IP and port

Docker allows network services to be provided by ...

Summary of common functions of PostgreSQL regular expressions

Summary of common functions of PostgreSQL regular...