gpt4 book ai didi

html - 如何在保持 Angular 不变的情况下创建响应式线性渐变?

转载 作者:太空宇宙 更新时间:2023-11-04 14:50:05 24 4
gpt4 key购买 nike

大家好我想改变,我们需要将删除线更新为相同的对 Angular 线 - 居中 45 度。请在下面找到代码...

.Product__widths__button {
background: #FFFFFF;
border: 1px solid #333333;
color: #333333;
display: block;
font-size: 16px;
line-height: 42px;
height: 42px;
text-align: center;
padding-left: 20px;
padding-right: 20px;
}
.Product__widths__button.disabled {
color: #D1D1D1;
background: linear-gradient(to top left, #fff 38px, #D1D1D1, #fff 40px);
border-color: #D1D1D1;
}
<a id="width_1_1" class="Product__widths__button disabled"><span>W</span> (Wide)</a>

这里想显示如下图

enter image description here

如果我这边还有什么需要的话,请告诉我。谢谢!!!

最佳答案

如果高度是固定的,您可以将背景大小设置为一个尺寸等于高度的正方形(在您的情况下为 42px)并将其居中,如下所示:

.Product__widths__button {
background: #FFFFFF;
border: 1px solid #333333;
color: #333333;
display: block;
font-size: 16px;
line-height: 42px;
height: 42px;
text-align: center;
padding-left: 20px;
padding-right: 20px;
}

.Product__widths__button.disabled {
color: #D1D1D1;
background:
linear-gradient(to top left,
/*the center is 42px*cos(45deg) = 29.7px, we remove/add pixel around*/
transparent 28px,#D1D1D1,transparent 31px)
center/42px 100% /*background-position/background-size (100% is your height)*/
no-repeat;
border-color: #D1D1D1;
}
<a id="width_1_1" class="Product__widths__button disabled"><span>W</span> (Wide)</a>

另一个想法是让渐变成为一个大正方形,以防您不知道确切的高度,并且它可以使用动态高度。

.Product__widths__button {
background: #FFFFFF;
border: 1px solid #333333;
color: #333333;
display: block;
font-size: 16px;
line-height: 42px;
text-align: center;
padding-left: 20px;
padding-right: 20px;
}

.Product__widths__button.disabled {
color: #D1D1D1;
background:
linear-gradient(to top left,
/* the center is 500px*cos(45deg) = 353.5px*/
transparent 351px,#D1D1D1,transparent 355px)
center/500px 500px /*background-position/background-size */
no-repeat;
border-color: #D1D1D1;
}
<a id="width_1_1" class="Product__widths__button disabled"><span>W</span> (Wide)</a>

<a id="width_1_1" class="Product__widths__button disabled"><span>W</span> (Wide)<br>another line</a>

没有background-sizebackground-position的另一种方法是简单地将度数设置为-45deg,你需要找到使用 calc() 结合 50%

居中

.Product__widths__button {
background: #FFFFFF;
border: 1px solid #333333;
color: #333333;
display: block;
font-size: 16px;
line-height: 42px;
text-align: center;
padding-left: 20px;
padding-right: 20px;
}

.Product__widths__button.disabled {
color: #D1D1D1;
background:
linear-gradient(-45deg,transparent calc(50% - 2px),#D1D1D1,transparent calc(50% + 2px));
border-color: #D1D1D1;
}
<a id="width_1_1" class="Product__widths__button disabled"><span>W</span> (Wide)</a>

<a id="width_1_1" class="Product__widths__button disabled"><span>W</span> (Wide)<br>another line</a>


您也可以尝试使用倾斜的元素作为背景,如果您不能使用 calc()

,您将获得更好的支持

.Product__widths__button {
background: #FFFFFF;
border: 1px solid #333333;
color: #333333;
display: block;
font-size: 16px;
line-height: 42px;
text-align: center;
padding-left: 20px;
padding-right: 20px;
position:relative;
z-index:0;
}

.Product__widths__button.disabled {
color: #D1D1D1;
border-color: #D1D1D1;
}
.Product__widths__button.disabled::before {
content:"";
position:absolute;
z-index:-1;
left:0;
top:0;
bottom:0;
width:calc(50% - 2px); /*we remove half the border-width to have a perfect centring*/
border-right:4px solid #D1D1D1;
transform:skewX(-45deg);
}
<a id="width_1_1" class="Product__widths__button disabled"><span>W</span> (Wide)</a>

<a id="width_1_1" class="Product__widths__button disabled"><span>W</span> (Wide)<br>another line</a>

关于html - 如何在保持 Angular 不变的情况下创建响应式线性渐变?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54942581/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com