html怎样设置渐变效果图,html – 如何向边框添加渐变

您可以使用渐变背景和左右两个伪元素来获得此效果,以获得倾斜角

.test {

border-left: 33px solid transparent;

border-right: 33px solid transparent;

height: 33px;

background: linear-gradient(90deg, black, blue);

margin: 0 auto;

min-width: 42px;

background-clip: content-box;

position: relative;

}

.test:before, .test:after {

content: '';

position: absolute;

width: 33px;

height: 100%;

}

.test:before {

background: linear-gradient(45deg, transparent 50%, black 50%);

right: 100%;

}

.test:after {

background: linear-gradient(315deg, transparent 50%, blue 50%);

left: 100%;

}

看起来我很想念这个方向.试试这个以另一种方式(对于webkit)

.test {

border-left: 33px solid transparent;

border-right: 33px solid transparent;

height: 33px;

background: linear-gradient(0deg, black, red);

margin: 0 auto;

min-width: 42px;

background-clip: content-box;

position: relative;

}

.test:before, .test:after {

content: '';

position: absolute;

width: 45px;

height: 45px;

bottom: 0px;

}

.test:before {

-webkit-transform: rotate(45deg);

-webkit-transform-origin: bottom right;

background: linear-gradient(-45deg, black 0, red 32px, transparent 32px);

right: 100%;

}

.test:after {

-webkit-transform: rotate(-45deg);

-webkit-transform-origin: bottom left;

background: linear-gradient(45deg, black 0, red 32px, transparent 32px);

left: 100%;

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值