gpt4 book ai didi

css - 在 45 度旋转元素上应用 50% 后的透明度

转载 作者:行者123 更新时间:2023-12-04 05:45:29 24 4
gpt4 key购买 nike

这是一个包含段落的 block 元素。我们称它为 * Block A * enter image description here

我想在它上面添加一个箭头提示,我这样做了: enter image description here

使用以下 CSS:

.Block_A:before {
content: '';
position: absolute;
top: 0; left: 50%;
width: 1em; height: 1em;
background: #0080FF;
border-width: 1px 0 0 1px; border-style: solid; border-color: #0080FF;
transform: rotate(45deg);
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
}

但如您所见,段落中的文字“died in”隐藏在提示后面。为了更好地查看和理解,我将显示在段落文本上方的提示的下半部分涂成了红色:

enter image description here

现在我如何才能使 Nib 的上半部分保持蓝色,但使下半部分(也就是红色部分)透明?像这样: enter image description here

我尝试使用:

background: linear-gradient(to bottom, #0080ff 0%,rgba(255,255,255,0) 50%);

但它并没有像通常那样工作,因为尖端的形状不是正方形或矩形,因为我已经对其进行了转换(旋转 45 度)。

最佳答案

为什么不首先使用三 Angular 形?喜欢

 #triangle-up { 
width: 0;
height: 0;
border-left: 50px solid transparent;
border-right: 50px solid transparent;
border-bottom: 100px solid #0080FF;
}

查看 http://css-tricks.com/examples/ShapesOfCSS/ .

关于css - 在 45 度旋转元素上应用 50% 后的透明度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20858709/

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