search
HomeWeb Front-endHTML TutorialExamples of dynamic text effects using pure CSS

Examples of dynamic text effects using pure CSS

Jun 05, 2018 am 11:49 AM
cssdynamicletter

I believe everyone has seen the medium effect on the website. Once the page is opened, both text and pictures change with the specified time. Today we will introduce how to achieve this effect by using pure CSS. Let’s take a look below.

You may often see cool websites

You can see in this type of website that as soon as the page is opened, both text and pictures change with the specified time. The principle is very simple, mainly using the animation attribute in CSS.

Next, I will take my current project as an example to achieve the animation effect of text and pictures.

HTML code writing:

##Copy code

The code is as follows:

<section class="rw-wrapper">
<span class="span-title">文字题目</span>
<h2 class="rw-sentence">
</h2>
</section>

At present, the general framework has been written, including a section tag, span (add according to preference), and h2 tag. Next add text code to it. Put the code in h2.

Copy code

The code is as follows:

<p class="rw-words rw-words-1">
<span>内容1</span>
<span>内容2</span>
...
</p>

The first text animation HTML.

Copy code

The code is as follows:

<p class="rw-words rw-words-2">
<span>内容1</span>
...
</p>

The second type of text animation HTML.

Copy code

The code is as follows:

//同理
<p class="rw-words rw-words-3">
<span><img  src="/static/imghwm/default1.png"  data-src="图片路径"  class="lazy"      style="max-width:90%" height="XX" alt="Examples of dynamic text effects using pure CSS" ></span>
...
</p>

The image transformation effect is as shown in the GIF above. Pictures slide from the right and change.

ok, now that the HTML code is done, now let’s implement the core part: CSS animation and font styles.

CSS code writing

Copy code

The code is as follows:

.rw-words{
-webkit-perspective:800px;
-moz-perspective:800px;
-o-perspective:800px;
-ms-perspactive:800px;
perspactive:800px;
}

By the way, the perspective attribute defines the distance of the 3D element from the view, in pixels. When you define the perspective attribute for an element, its child elements get the perspective effect, not the element itself. The number 800px represents the distance of the element from the view. -moz represents firefox browser private properties, -ms represents IE browser private properties, -webkit represents chrome and safari private properties, -o represents opera browser private properties.

Copy code ##The code is as follows:

.rw-words span{
white-space:nowrap; //文字不允许换行
overflow:hidden;
}

The specific label position settings are set according to the actual situation.

Copy codeThe code is as follows:

.rw-words-1 span{
-webkit-animation: rotateWordsFirst 10s linear infinite 0s;
-o-animation: rotateWordsFirst 10s linear infinite 0s;
-moz-animation: rotateWordsFirst 10s linear infinite 0s;
-ms-animation: rotateWordsFirst 10s linear infinite 0s;
animation:rotateWordsFirst 10s linear infinite 0s;
}

Use animation effects here! First, rotateWordsFirst is the name of the animation, 10s is the time it takes for the entire animation to be completed once, linear is the time curve used, and infinite is repeated an unlimited number of times.

About animation syntax:

##Copy code

The code is as follows:

animation: name duration timing-function delay iteration-count direction;

animation-name: Specifies the keyframe name that needs to be bound to the selector.

animation-duration: Specifies the time it takes to complete the animation, in seconds or milliseconds.

animation-timing-function: Specifies the speed curve of animation.

animation-delay: Specifies the delay before the animation starts.

animation-iteration-count: Specifies the number of times the animation should be played (infinite rotation)

animation-direction: Specifies whether the animation should be played in reverse in turn.

If you want to know more, search: CSS series animationi.

Next, another type of animation.

Copy code

The code is as follows:

.rw-words-2 span{
-webkit-animation: rotateWordsFirst 10s ease-in infinite 0s;
-o-animation: rotateWordsFirst 10s ease-in infinite 0s;
-moz-animation: rotateWordsFirst 10s ease-in infinite 0s;
-ms-animation: rotateWordsFirst 10s ease-in infinite 0s;
animation:rotateWordsFirst 10s ease-in infinite 0s;
}

ease-in explanation:

ease is stipulated to be slow A transition effect that starts at a slow speed, then becomes faster, and then ends at a slow speed; ease-in specifies a transition effect that starts at a slow speed; ease-out specifies a transition effect that ends at a slow speed; ease-in-out specifies a transition effect that starts at a slow speed and ends at a slow speed Ending transition effect (you can try these effects)

Similarly, the .rw-words-3 span can be set in the same way.

Copy code

The code is as follows:

.rw-words span:nth-child(1){
-webkit-animation-delay: 3s;
-moz-animation-delay: 3s;
-o-animation-delay: 3s;
-ms-animation-delay: 3s;
animation-delay: 3s;
}

:nth-child(n) selector matches the element that belongs to its parent The Nth child element of , regardless of the element's type. n can be a number, keyword, or formula.

Copy code

The code is as follows:

.rw-words span:nth-child(n) {
-webkit-animation-delay: 6s;
-moz-animation-delay: 6s;
-o-animation-delay: 6s;
-ms-animation-delay: 6s;
animation-delay: 6s;
}
...

Set different selectors to achieve display delay between text .

Copy code

The code is as follows:

@-webkit-keyframes rotateWordsFirst/second {
0% { opacity: 0; -webkit-animation-timing-function: ease-in; width: 0px;}
//此属性查看animation
5% { opacity: 1; -webkit-animation-timing-function: ease-out; width: 100%;}
17% { opacity: 1; } //设置不透明级别
20% { opacity: 0; }
100% { opacity: 0; }
}

keyframes defines the timeline for each animation, and you can set a certain time What is the state of the element being animated. Used with animation.

Then write the adaptation of each browser, such as -o, -moz, -ms, etc.

In addition to the animation attribute, you can also try the use of the transform attribute, which can achieve effects such as rotation and scaling of text and images. The above is all about using pure CSS to achieve dynamic text effects. I hope it can help It helps everyone learning to use CSS.

Related recommendations:

CSS text font color setting method (CSS color)

The above is the detailed content of Examples of dynamic text effects using pure CSS. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
The Future of HTML: Evolution and Trends in Web DesignThe Future of HTML: Evolution and Trends in Web DesignApr 17, 2025 am 12:12 AM

The future of HTML is full of infinite possibilities. 1) New features and standards will include more semantic tags and the popularity of WebComponents. 2) The web design trend will continue to develop towards responsive and accessible design. 3) Performance optimization will improve the user experience through responsive image loading and lazy loading technologies.

HTML vs. CSS vs. JavaScript: A Comparative OverviewHTML vs. CSS vs. JavaScript: A Comparative OverviewApr 16, 2025 am 12:04 AM

The roles of HTML, CSS and JavaScript in web development are: HTML is responsible for content structure, CSS is responsible for style, and JavaScript is responsible for dynamic behavior. 1. HTML defines the web page structure and content through tags to ensure semantics. 2. CSS controls the web page style through selectors and attributes to make it beautiful and easy to read. 3. JavaScript controls web page behavior through scripts to achieve dynamic and interactive functions.

HTML: Is It a Programming Language or Something Else?HTML: Is It a Programming Language or Something Else?Apr 15, 2025 am 12:13 AM

HTMLisnotaprogramminglanguage;itisamarkuplanguage.1)HTMLstructuresandformatswebcontentusingtags.2)ItworkswithCSSforstylingandJavaScriptforinteractivity,enhancingwebdevelopment.

HTML: Building the Structure of Web PagesHTML: Building the Structure of Web PagesApr 14, 2025 am 12:14 AM

HTML is the cornerstone of building web page structure. 1. HTML defines the content structure and semantics, and uses, etc. tags. 2. Provide semantic markers, such as, etc., to improve SEO effect. 3. To realize user interaction through tags, pay attention to form verification. 4. Use advanced elements such as, combined with JavaScript to achieve dynamic effects. 5. Common errors include unclosed labels and unquoted attribute values, and verification tools are required. 6. Optimization strategies include reducing HTTP requests, compressing HTML, using semantic tags, etc.

From Text to Websites: The Power of HTMLFrom Text to Websites: The Power of HTMLApr 13, 2025 am 12:07 AM

HTML is a language used to build web pages, defining web page structure and content through tags and attributes. 1) HTML organizes document structure through tags, such as,. 2) The browser parses HTML to build the DOM and renders the web page. 3) New features of HTML5, such as, enhance multimedia functions. 4) Common errors include unclosed labels and unquoted attribute values. 5) Optimization suggestions include using semantic tags and reducing file size.

Understanding HTML, CSS, and JavaScript: A Beginner's GuideUnderstanding HTML, CSS, and JavaScript: A Beginner's GuideApr 12, 2025 am 12:02 AM

WebdevelopmentreliesonHTML,CSS,andJavaScript:1)HTMLstructurescontent,2)CSSstylesit,and3)JavaScriptaddsinteractivity,formingthebasisofmodernwebexperiences.

The Role of HTML: Structuring Web ContentThe Role of HTML: Structuring Web ContentApr 11, 2025 am 12:12 AM

The role of HTML is to define the structure and content of a web page through tags and attributes. 1. HTML organizes content through tags such as , making it easy to read and understand. 2. Use semantic tags such as, etc. to enhance accessibility and SEO. 3. Optimizing HTML code can improve web page loading speed and user experience.

HTML and Code: A Closer Look at the TerminologyHTML and Code: A Closer Look at the TerminologyApr 10, 2025 am 09:28 AM

HTMLisaspecifictypeofcodefocusedonstructuringwebcontent,while"code"broadlyincludeslanguageslikeJavaScriptandPythonforfunctionality.1)HTMLdefineswebpagestructureusingtags.2)"Code"encompassesawiderrangeoflanguagesforlogicandinteract

See all articles

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function