css3移动端简单的背景渐变和文字渐变

来源:互联网 发布:黑莓9930解网络锁 编辑:程序博客网 时间:2024/05/16 09:25

背景渐变写法:

background-image: -moz-linear-gradient(top, #fdfdfd, #f8f8f8); /* Firefox */

background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fdfdfd), color-stop(1, #f8f8f8)); /* Saf4+, Chrome */

filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdfdfd', endColorstr='#f8f8f8', GradientType='0'); /* IE*/

文字渐变写法(安卓手机支持不完全,文字会模糊,ios8以上效果ok方便使用,如图):

background: -webkit-linear-gradient(left, rgba(0, 171, 255, 1) 0%, rgba(85, 255, 226, 1) 100%);

color:transparent;

-webkit-background-clip:text;

-webkit-background-clip: text;

-webkit-text-fill-color: transparent;



0 0