Table of Contents
Effect 1 - Three-dimensional character effect
Effect 2-long tail effect
Effect Three-Inner Shadow
Effect 4-Twill stroke effect
Effect Five-Text Stripe Animation
Effect Six-Stroke Text
Effect Seven-Mask Text
Effect eight-3D glare effect
Home Web Front-end CSS Tutorial How to achieve text effects with pure CSS3? 8 text effects to share

How to achieve text effects with pure CSS3? 8 text effects to share

May 20, 2021 am 10:49 AM
css text effects

This article will share with you 8 ways to implement CSS text effects. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to everyone.

How to achieve text effects with pure CSS3? 8 text effects to share

Today we will study several text effects, mainly using text-shadow and several unique features of the webkit kernel to achieve the effects.

Click here to study online and click here to download collections.

Effect 1 - Three-dimensional character effect


##Our html file looks like this. For better display effect, We added editable properties.

<div contenteditable="true" class="text effect01">前端开发whqet</div>
Copy after login

In the css file, we first look at the global settings

body{
  background-color: #666;
}
@import url(http://fonts.googleapis.com/css?family=Dosis:500,800);
.text {
    font-family:"微软雅黑", "Dosis", sans-serif;
    font-size: 80px;
    text-align: center;
    font-weight: bold;
    line-height:200px;
    text-transform:uppercase;
    position: relative;
}
Copy after login

Then comes the exclusive CSS for effect one. It is very simple, just use text-shadow to achieve the three-dimensional word effect

.effect01{
    background-color: #333;
    color:#fefefe;
    text-shadow:
    0px 1px 0px #c0c0c0,
    0px 2px 0px #b0b0b0,
    0px 3px 0px #a0a0a0,
    0px 4px 0px #909090,
    0px 5px 10px rgba(0, 0, 0, 0.6);
}
Copy after login

Effect 2-long tail effect


html file is still the same

<div contenteditable="true" class="text effect02">前端开发whqet</div>
Copy after login

text-shadow offset inside A little more, the colors gradually become simpler, and the long-tail effect comes.

.effect02{
  color:#333;
  background-color: #ddd;
  text-shadow:
    1px -1px 0 #767676, 
    -1px 2px 1px #737272, 
    -2px 4px 1px #767474, 
    -3px 6px 1px #787777, 
    -4px 8px 1px #7b7a7a, 
    -5px 10px 1px #7f7d7d, 
    -6px 12px 1px #828181, 
    -7px 14px 1px #868585, 
    -8px 16px 1px #8b8a89, 
    -9px 18px 1px #8f8e8d, 
    -10px 20px 1px #949392, 
    -11px 22px 1px #999897, 
    -12px 24px 1px #9e9c9c, 
    -13px 26px 1px #a3a1a1, 
    -14px 28px 1px #a8a6a6, 
    -15px 30px 1px #adabab, 
    -16px 32px 1px #b2b1b0, 
    -17px 34px 1px #b7b6b5,
    -18px 36px 1px #bcbbba, 
    -19px 38px 1px #c1bfbf, 
    -20px 40px 1px #c6c4c4, 
    -21px 42px 1px #cbc9c8, 
    -22px 44px 1px #cfcdcd;
}
Copy after login

Effect Three-Inner Shadow

html file

<div contenteditable="true" class="text effect03">前端开发whqet</div>
Copy after login

css file

.effect03{
  color: #202020;
  background-color: #2d2d2d;
  text-shadow: 
    -1px -1px 1px #111111,
    2px 2px 1px #363636;
}
Copy after login

Effect 4-Twill stroke effect


html file

<div contenteditable="true" class="text effect04">前端开发whqet</div>
Copy after login

css file, use linear-gradient to set stripes on p Background, only display background on text (-webkit-background-clip: text;), text color transparent (-webkit-text-fill-color: transparent;) and text stroke (-webkit-text-stroke: 2px # 111;) implementation.

.effect04{
  background-color: #333;
  background-image:
      linear-gradient(
        45deg,
        transparent 45%,
        hsla(48,20%,90%,1) 45%,
        hsla(48,20%,90%,1) 55%,
        transparent 0
        );
    background-size: .05em .05em;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px #111;
}
Copy after login

Effect Five-Text Stripe Animation

html file

<div data-text="前端开发whqet" class="text effect05">前端开发whqet</div>
Copy after login

css file, using: before pseudo-object to display stripes and animate them.

.effect05{
    color:#DC554F;
    background-color:#27ae60;
    z-index: 3;
}
.effect05:before{
    content:attr(data-text);  
    width:100%;
    line-height:200px;
    opacity: .5;
    position: absolute;
    top:2px;
    left:5px;
    background-image:  
      linear-gradient(  
        45deg,  
        transparent 45%,  
        hsla(48,20%,90%,1) 45%,  
        hsla(48,20%,90%,1) 55%,  
        transparent 0  
        ); 
    z-index:-1;
    background-size: .05em .05em;  
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    animation: shadowGo 20s linear infinite; 
}
@keyframes shadowGo{   
    0% {background-position: 0 0}  
    0% {background-position: -100% 100%}}; 
}
Copy after login

Effect Six-Stroke Text

html file

<div contenteditable="true" class="text effect06">前端开发whqet</div>
Copy after login

css file

.effect06 {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px #d6d6d6;
    background: url(http://www.pencilscoop.com/demos/CSS_Text_Effects/images/galaxy.jpg);
    background-size: cover;
}
Copy after login

Effect Seven-Mask Text


html file

<div contenteditable="true" class="text effect07">前端开发whqet</div>
Copy after login

css file

.effect07 {
    background: url(http://www.pencilscoop.com/demos/CSS_Text_Effects/images/galaxy.jpg) #333;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: cover;
    animation: 10s infinite linear animate;
}
.effect07:before {
    content:"";
    width:100%;
    height:100%;
    position: absolute;
    left:0;
    top:0;
    background-color: #999;
    z-index: -1;
}
@keyframes animate {
    0% {
        background-position:0;
    }
    100% {
        background-position:-1000px 0;
    }
}
Copy after login

Effect eight-3D glare effect

##html file

<div class="text effect08">
  <h1>前端开发whqet</h1>
  <h1>前端开发whqet</h1>
  <h1>前端开发whqet</h1>
  <h1>前端开发whqet</h1>
  <h1>前端开发whqet</h1>
  <h1>前端开发whqet</h1>
  <h1>前端开发whqet</h1>
  <h1>前端开发whqet</h1>
</div>
Copy after login

css file

.effect08 {
    color:#fff;
    transform-origin:center bottom;
    transform-style:preserve-3d;
    transition:all 1s;
    cursor: pointer;
}
.effect08:hover {
    transform:rotate3d(1, 0, 0, 40deg);
}
.effect08 h1 {
    position: absolute;
    left:0;
    right:0;
    margin:auto;
    text-shadow:0 0 10px rgba(0, 0, 100, .5);
}
/*
sass 循环给每一个h1设置不同的translateZ
*/
@for $n from 1 to 8 {
    .effect08 h1:nth-child(#{$n}) {
        transform:translateZ(4px*$n);
    }
}
Copy after login

For more programming-related knowledge, please visit:

programming video

! !

The above is the detailed content of How to achieve text effects with pure CSS3? 8 text effects to share. 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

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)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

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)

How to use the locally installed 'Jingnan Mai Round Body' on a web page and solve the display problem? How to use the locally installed 'Jingnan Mai Round Body' on a web page and solve the display problem? Apr 05, 2025 pm 02:06 PM

How to use locally installed font files on web pages In web development, users may want to use specific fonts installed on their computers to enhance the network...

How to adapt and adjust the label size of the Element-UI horizontal menu el-menu on the PC and mobile side? How to adapt and adjust the label size of the Element-UI horizontal menu el-menu on the PC and mobile side? Apr 05, 2025 am 10:12 AM

The adaptation issues of the Element-UI menu component el-menu and label size adjustment During the development process of using the Element-UI framework, the flexibility and ease of use of the el-menu component...

Element-UI el-menu component: How to adjust the size of menu labels and control the display of submenu in different modes? Element-UI el-menu component: How to adjust the size of menu labels and control the display of submenu in different modes? Apr 05, 2025 am 10:36 AM

The label size adjustment of the Element-UI menu component el-menu and the behavior differences under the mode attributes of the Element-UI menu component will be used to determine the different mode modes of the el-menu component in the Element-UI framework...

How to use CSS to achieve a gradient effect of the background color transition from left to right and gradually becoming lighter from top to bottom? How to use CSS to achieve a gradient effect of the background color transition from left to right and gradually becoming lighter from top to bottom? Apr 05, 2025 pm 12:57 PM

CSS gradient color effect implementation: Gradient background color from top to bottom In web design, how to transition from left to right in the search box and the background color under the carousel image...

How to customize resize symbols through CSS to match background color? How to customize resize symbols through CSS to match background color? Apr 05, 2025 pm 02:09 PM

How to customize resize symbols with CSS to match background color? In web design, the details of the user experience can often significantly improve the overall effect. For example...

How to solve the problem of page jitter caused by dynamically setting elements to fixed in JavaScript? How to solve the problem of page jitter caused by dynamically setting elements to fixed in JavaScript? Apr 05, 2025 am 11:39 AM

How to solve the problem of page jitter caused by dynamically setting elements to fixed by JS. When dynamically setting elements to fixed by JavaScript, you sometimes encounter page jitter...

Under a fixed width layout, what is the relationship between the font size and the letter width? Under a fixed width layout, what is the relationship between the font size and the letter width? Apr 05, 2025 pm 12:51 PM

Under fixed width layout, the subtle relationship between font size and letter width When designing web pages, we often encounter the need to line up in fixed width containers...

How to implement a custom theme by overriding the SCSS variable of Element? How to implement a custom theme by overriding the SCSS variable of Element? Apr 05, 2025 pm 01:45 PM

How to implement a custom theme by overriding the SCSS variable of Element? Using Element...

See all articles