Add wavy line effect to text

php中世界最好的语言
Release: 2018-03-22 16:24:04
Original
3242 people have browsed it

This time I will bring you the precautions for adding wavy line effects to text. The following is a practical case. Let’s take a look.

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. With

background-size, background-repeat, it turns one into many and makes a smooth transition. . Wow, the final effect is so clever! There are no words in the world to describe...

——Inscription, adapted from "The God of Cookery"

Implementation method

Syntax: linear-gradient(

direction, color-stop 1, color-stop 2,...)

Simple usage:
background-image: linear-gradient(red, transparent);

Increase the angle, linear-gradient(45deg, red, transparent)

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

Add a colorlinear-gradient(45deg, red, transparent 45%,red )

I don’t know if everyone has an enlightenment when they see this.

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

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

Combine these two lines.

Combined with

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

The height is 1/2 of the original number

Final code:

Text wavy line effect

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

Summary of commonly used color gradient methods

2D simulation to realize special effects of Ferris wheel rotation animation

CSS3 box-sizing attribute graphic tutorial


The above is the detailed content of Add wavy line effect to text. For more information, please follow other related articles on 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!