Quantcast
Channel: w3cplus
Viewing all articles
Browse latest Browse all 1557

创建渐变文字

$
0
0

此效果仅限于webkit内核,先设置background-image为渐变的颜色,然后设置-webkit-background-clip为text,最后设置填充颜色为透明即-webkit-text-fill-color: transparent;

p{
	font-size:80px;
	background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

Viewing all articles
Browse latest Browse all 1557

Trending Articles