Text pop-up effects implemented with CSS3

Text pop-up effects implemented with CSS3

Achieve results

Implementation Code

html

<div>123WORDPRESS.COM</div> 
<div> 
  <span>https://www.jb51.net</span>
</div>


<p>a css3 animation demo</p>

CSS3

@import url('https://fonts.googleapis.com/css?family=Roboto:300');

body {
  text-align:center;
  background: linear-gradient(141deg, #ccc 25%, #eee 40%, #ddd 55%);
  color:#555;
  font-family:'Roboto';
  font-weight:300;
  font-size:32px;
  padding-top:40vh;
  height:100vh;
  overflow:hidden;
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  -webkit-transform: translate3d(0,0,0);
}

div {
  display:inline-block;
  overflow:hidden;
  white-space:nowrap;
}

div:first-of-type { /* For increasing performance 
                       ID/Class should've been used. 
                       For a small demo 
                       it's okaish for now */
  animation: showup 7s infinite;
}

div:last-of-type {
  width:0px;
  animation: reveal 7s infinite;
}

div:last-of-type span {
  margin-left:-355px;
  animation: slidein 7s infinite;
}

@keyframes showup {
    0% {opacity:0;}
    20% {opacity:1;}
    80% {opacity:1;}
    100% {opacity:0;}
}

@keyframes slidein {
    0% { margin-left:-800px; }
    20% { margin-left:-800px; }
    35% { margin-left:0px; }
    100% { margin-left:0px; }
}

@keyframes reveal {
    0% {opacity:0;width:0px;}
    20% {opacity:1;width:0px;}
    30% {width:355px;}
    80% {opacity:1;}
    100% {opacity:0;width:355px;}
}


p {
  font-size:12px;
  color:#999;
  margin-top:200px;
}

The above is the details of the text pop-up effects implemented by CSS3. For more information about CSS3 text pop-up effects, please pay attention to other related articles on 123WORDPRESS.COM!

<<:  MySQL database terminal - common operation command codes

>>:  Implementation of textarea adaptive height solution in Vue

Recommend

Simple example of adding and removing HTML nodes

<br />Simple example of adding and removing ...

Briefly describe how to install Tomcat image and deploy web project in Docker

1. Install Tomcat 1. Find the tomcat image on Doc...

jQuery implements employee management registration page

This article example shares the specific code of ...

mysql5.7.17 installation and configuration example on win2008R2 64-bit system

123WORDPRESS.COM has explained to you the install...

How to make Python scripts run directly under Ubuntu

Let’s take the translation program as an example....

How to use Docker-compose to build an ELK cluster

All the orchestration files and configuration fil...

Pitfalls and solutions for upgrading MySQL 5.7.23 in CentOS 7

Preface Recently, I found a pitfall in upgrading ...

Steps to set up HTTPS website based on Nginx

Table of contents Preface: Encryption algorithm: ...

How to configure Nginx virtual host in CentOS 7.3

Experimental environment A minimally installed Ce...

Detailed explanation of type protection in TypeScript

Table of contents Overview Type Assertions in syn...

About VSCode formatting JS automatically adding or removing semicolons

introduction It is okay to add or not add a semic...