CSS3渐变色

2023-12-14 10:57 小编

一、背景色渐变

1
2
3
4
5
6
.box{width300px;height300px;
     background: -webkit-linear-gradient(rightred blue); /* Safari 5.1 - 6.0 */
     background: -o-linear-gradient(rightredblue); /* Opera 11.1 - 12.0 */
     background: -moz-linear-gradient(rightredblue); /* Firefox 3.6 - 15 */
     background: linear-gradient(rightred blue); /* 标准的语法(必须放在最后) */
 }

色值还可以可以用

1
background:linear-gradient(to left,rgba(232,0,0,0.310%,rgba(0,51,204,0.630%,rgba(0,51,204,1100%)

二、字体渐变色

1
2
3
4
5
.box{width300px;height300px;font-size100px;
            background-image: -webkit-linear-gradient(bottomrgb(000), rgb(255255255));
            -webkit-background-clip: text;
            -webkit-text-fill-colortransparent;
        }

三、镂空字体

1
2
3
4
  input::-webkit-input-placeholder { colorred; }/* WebKit browsers */
  input:-moz-placeholder {  colorred; }/* Mozilla Firefox 4 to 18 */
  input::-moz-placeholder { colorred; }/* Mozilla Firefox 19+ */
  input:-ms-input-placeholder {  colorred; }/* Internet Explorer 10+ */

五、给图片加上内阴影

1
2
3
4
5
6
7
8
9
10
11
.demo{
            -webkit-box-shadow:inset 0 0 30px #FF1493;
            -moz-box-shadow:inset 0 0 30px #FF1493;
            box-shadow:inset 0 0 30px #FF1493;
            display:inline-block;
        }
.demo img{
            position:relative;
            z-index:-1;
            displayblock;
        }

这里有一个渐变工具,比较好用:https://www.colorzilla.com/gradient-editor/


在线咨询 拨打电话

电话

13363039260

微信二维码

微信二维码