CSS3 achieves text wavy line effect

高洛峰
Release: 2017-03-01 15:24:04
Original
1825 people have browsed it

Preface

The css design is ingenious and the implementation is exquisite. If you think about it carefully, it is extraordinary and wonderful. This wavy line cleverly uses the linear-gradient attribute to integrate angle, color, and position. Together with background-size and background-repeat, it turns one into many and makes a smooth transition. Wow, the final effect is so clever! There are no words to describe it...

Implementation method

Syntax: linear-gradient(direction, color-stop 1 , color-stop 2,...)

CSS3 achieves text wavy line effect
Simple usage: background-image: linear-gradient(red, transparent);

CSS3 achieves text wavy line effect

Add angle, linear-gradient(45deg, red, transparent)

CSS3 achieves text wavy line effect

Add a position: linear-gradient(45deg, red, transparent 45%)

CSS3 achieves text wavy line effect

Add a colorlinear-gradient(45deg, red, transparent 45%,red)
I don’t know if everyone saw this, as if they saw a mirror and had an epiphany.

CSS3 achieves text wavy line effect
linear-gradient(45deg, transparent 45%, red 55%, transparent 60%)

CSS3 achieves text wavy line effect

linear-gradient(135deg , transparent 45%, red 55%, transparent 60%)

Combine these two lines.

CSS3 achieves text wavy line effect
Combined

Seeing this, do you know how to achieve the wavy line effect? ^_^

CSS3 achieves text wavy line effect
The height is 1/2 of the original

Final code:

CSS3 achieves text wavy line effect
Text wavy line effect

Summary

Okay, this is it. The above is the entire content of this article. I hope it will help everyone learn or use CSS3 It can be helpful. If you have any questions, you can leave a message to communicate.

For more articles related to CSS3 realizing text wavy line effect, please pay attention to the PHP Chinese website!

Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!