An in-depth explanation of the oblique linear gradient lineaer-gradient in CSS3

Y2J
Release: 2017-05-19 15:04:25
Original
5610 people have browsed it

background-color: rgb(255, 255, 255);">1. The question is not as simple as I thought

Ask a question, use CSS3 gradient to implement a (100px, 100px) to (200px, 200px) from red to yellow on a 400*300 p layer How to achieve oblique linear gradient?

//zxx: The CSS3 gradient discussed here is based on the new standard writing method, and ignores the private prefix

We may know the implementation of horizontal gradient, similar to this:

{background-image:linear-gradient(left, red 100px, yellow 200px);}
Copy after login

The effect may be similar to this:

An in-depth explanation of the oblique linear gradient lineaer-gradient in CSS3

It is very natural, then from (100px, 100px) to (200px, 200px) should start from the upper left corner, it should be like this Sub:

{background-image:linear-gradient(left top, red 100px, yellow 200px);}

The effect may be similar to this:

An in-depth explanation of the oblique linear gradient lineaer-gradient in CSS3

Wow, handsome, well, that should be the effect we want! ——

This is obviously impossible. If it were really that simple, I wouldn’t say it~

Let’s open PhotoshopwaitdrawingSoftware, draw a gradient that meets the above requirements and see the effect:

An in-depth explanation of the oblique linear gradient lineaer-gradient in CSS3

An in-depth explanation of the oblique linear gradient lineaer-gradient in CSS3

Compare with the above CSS implementation:

An in-depth explanation of the oblique linear gradient lineaer-gradient in CSS3

The size of the red area is obviously very different. What's going on?

I can only tell you that things are far from as simple as you think!

2. Use lazy and slow thinking and start from scratch

When we encounter a problem, if our first reaction is to ask for help from others, we will only get superficial things; if we analyze deeply by ourselves, we will often get what we have. It's something real. The first type of person seems to be studious, but in fact he is a lazy person who diligently uses fast thinking that is easy and consumes less energy. This kind of person is suitable for sales and public relations, but not for technology; but it does not mean that he earns money. It will be less.

Enough with the digression. Take a deep breath, come on, breathe in... Okay, now we re-examine the standard writing method of CSS3 gradient linear gradient (because webkit does not support it, so it is omitted here):

background-image: linear-gradient(  [  |  ,]?  [, ]+ );
Copy after login

We have the above CSS syntax It is often seen, but some people may not understand the specific meaning. In fact, the meaning of the above symbols has many similarities with the regular expression:

[] means in the regular expression A character class, here, you can understand it as a small unit.

|Indicates candidate. That is, "or" means either the former or the latter.

? is the quantifier, which means 0 or 1. The implication is that you can directly change the color without specifying the direction. For example:

background:linear-gradient(red, yellow);
Copy after login

is the effect of red and yellow stripes from top to bottom.

+ is also a quantifier, indicating 1 or more. Therefore, the termination color is indispensable. For example: linear-gradient(red) is soy sauce, a blank slate.

<> are keywords, mainly to let developers know what content should be placed here.

Linear gradient keyword
1. angle
angle represents the angle of the gradient. However, this angle changes tens of millions. Don’t take it for granted. For example:
If the angle is 45deg, or a gradient from red to yellow, the following picture is the correct representation:

An in-depth explanation of the oblique linear gradient lineaer-gradient in CSS3

is A Or B? Or C? Or D?

This is simpler than your girlfriend showing you four pieces of clothing and asking you which one looks better.

5 seconds countdown, 5, 4, 3, 2, 1, ...

Okay, the answer is: C

Dear friend, is the answer correct? ?

I guarantee that many people have answered it wrong (including myself). Why do they make mistakes? The reason is simple, the "familiarity effect".

想让人们相信谬误有个可靠的方法,那就是不断重复,因为人们很难对熟悉感和真相加以区别。——丹尼尔·卡尼曼

我们,譬如我,非常多次地接触CSS3 transform中的旋转,rotate(45deg)效果就是元素默认态顺时针旋转45°;于是,这种熟悉感会让我们觉得渐变的旋转也应该如此。默认渐变从上到下,那么旋转45°应该是D啊(参见下gif示意),怎么会是C呢?

An in-depth explanation of the oblique linear gradient lineaer-gradient in CSS3

photoshop与CSS3走得越来越近了,我们可以从photoshop中找到答案。

An in-depth explanation of the oblique linear gradient lineaer-gradient in CSS3

从上图那个圈中的圆环可以看出,渐变的角度与旋转的那个角度完全不是一回事。线性渐变的这个角度为圆心为起点的发散方向。大图示意就是:

An in-depth explanation of the oblique linear gradient lineaer-gradient in CSS3

2. side-or-corner
side-or-corner中文意思就是“边或角”,可选值有:

[left | right] || [top | bottom]

表示,你可以有如下的写法或组合:
left, right, top, bottom, left top, left bottom, right top, right bottom. 分别表示,从左往右,从右往左,从上往下,从下往上,从左上往右下,从……(都懂的,不全写了)

其中的left top(从左上往右下)正好我们一开始的例子使用了,现在看看,稍微想想,就知道我们使用错了!

显然,从(100,100)到(300,300)是个45度倍数角;而left top的角度是直奔右下角的,而容器是400*300,显然,不是45度倍数角。根据我们上面对angle的认识,角度应该是-45°,-45°为圆心网右下方向45度的一条线,正好符合从(100,100)到(300,300)的方向!

3. color-stop

渐变关键颜色结点,语法为:

 [  |  ]
Copy after login

中文解释就是,颜色值+空格+百分比或长度值。例如red 100px. 记住,这里的颜色值只能一个,因此, red 100px 100px是完全错误滴!

OK,现在我们定义重新梳理了一遍,现在实现一开始的渐变效果应该OK了吧,试试呗~

如下CSS:

{background-image:linear-gradient(-45deg, red 100px, yellow 200px);}
Copy after login

如下效果:

An in-depth explanation of the oblique linear gradient lineaer-gradient in CSS3

肉眼看上去好像那么回事,我们来对比下photoshop中的正确实现:

An in-depth explanation of the oblique linear gradient lineaer-gradient in CSS3

额~ 貌似还是不对啊,而且差得更远了,怎么回事???

我只能告诉你,事情远没有你想的那么简单!

三、深入理解线性渐变的角度坐标

上面的代码我们稍微修改下,加上-webkit前缀以及-moz前缀看看:

{background-image:-webkit-linear-gradient(-45deg, red 100px, yellow 200px);}
Copy after login

如下效果(非webkit内核截图):

An in-depth explanation of the oblique linear gradient lineaer-gradient in CSS3

哎呀,貌似角度对了嘛!咋回事。

这是Chrome浏览器下的一个奇葩问题,最近,Chrome浏览器已经去掉了CSS3渐变的私有前缀,但是,其中的解析也有了写变化:

background-image:-webkit-linear-gradient(-45deg, red, yellow)
Copy after login


background-image:linear-gradient(-45deg, red, yellow)
Copy after login

在Chrome浏览器下的渐变方向居然是相反的!45deg是正常的。

Firefox浏览器下也是如此,有前缀和没有前缀方向相反!咋回事?

原因很简单,CSS3目前还是草案阶段!

从浏览器去掉前缀前后的变化可以推测,之前,W3C的渐变坐标是与photoshop中一致的,但是,后来,由于某些原因,修改了。

至于什么原因,根据我草草的查找,可能与下面几个关键字之一有联系:animation/transition动画、write-mode书写方向、flex box模型、以及radial-gradient渐变等。

using angles
For the purpose of this argument, ‘0deg’ points upward, and positive angles represent clockwise rotation, so ‘90deg’ point toward the right.

也就是:

使用angles
参数释义如下,‘0deg’指向上面,同时正角度顺时针旋转,因此‘90deg’指向右边。

我们画一下就是:

An in-depth explanation of the oblique linear gradient lineaer-gradient in CSS3

可见,目前,规范的渐变坐标系与photoshop是有差异的。

同时,也告诫我们,私有前缀可不能乱用哦!

面向未来,显然我们都要跟着规范走,于是有CSS:

{background-image:linear-gradient(135deg, red 100px, yellow 200px);}
Copy after login

效果为:

An in-depth explanation of the oblique linear gradient lineaer-gradient in CSS3

与PS图比一下:

An in-depth explanation of the oblique linear gradient lineaer-gradient in CSS3

我去~怎么还是有出入啊?——红色区域大小明显不一样嘛!

我只能告诉你,事情远没有你想的那么简单!

四、深入理解角度坐标与位置关系

对于斜向线性渐变,点到点的渐变可不是直接把点的横坐标放上去就可以的。因为当渐变倾斜的时候,渐变的起止点的坐标也发生变化了。下图是官方规范的一张示意图,演示的是45deg渐变的起止点以及方向。

An in-depth explanation of the oblique linear gradient lineaer-gradient in CSS3

记住一个关键点,渐变的起点和终点(默认)在过中心的渐变线的垂直线上,于是,我们就可以确定起点与终点的位置了。按照这个理解,我们就可以画出400*300 p上135deg起始点在哪里,然后再确定(100,100)和(200,200)的位置就轻松多了。

如下示意图:

An in-depth explanation of the oblique linear gradient lineaer-gradient in CSS3

一图顶前言,反正上面这张图我是看懂了。于是,我们的坐标起止点值其实就变成了,黑色括弧的长度以及紫色括弧的长度值分别多少!

虽然很多人不喜欢数学,但是几何应该都还不错,我们来一起算一下……

//zxx: 长度计算中……

结果为,起点:

100 * Math.sqrt(2) = 141.4213562373095;
Copy after login

终点为:

200 * Math.sqrt(2) = 282.842712474619;
Copy after login

CSS用上:

{background-image:linear-gradient(135deg, red 141.4213562373095px, yellow 282.842712474619px);}
Copy after login

效果:

An in-depth explanation of the oblique linear gradient lineaer-gradient in CSS3

与PS的效果比对下:

An in-depth explanation of the oblique linear gradient lineaer-gradient in CSS3

【相关推荐】

1. CSS3免费视频教程

2. 关于CSS3中linear-gradient参数的详解

3. CSS linear-gradient() 的语法详解

4. CSS3中linear-gradient的实例详解

5. 详解CSS3中lineaer-gradient使用方法

The above is the detailed content of An in-depth explanation of the oblique linear gradient lineaer-gradient in CSS3. For more information, please follow other related articles on the PHP Chinese website!

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!