gpt4 book ai didi

html - 在 div 的末尾淡入淡出文本?

转载 作者:太空狗 更新时间:2023-10-29 13:11:55 33 4
gpt4 key购买 nike

是否可以使用 CSS 使靠近 div 末尾的文本水平淡化。

例如像这样:

enter image description here

最佳答案

CSS 渐变和 rgba 将完成这项工作

Demo

Extended Text Version (更新)

div {
position: relative;
display: inline-block;
}

div span {
display: block;
position: absolute;
height: 80px;
width: 200px;
right: 0;
background: linear-gradient(to right, rgba(255,255,255,.6) 30%,rgba(255,255,255,1) 100%);
background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,.6)), color-stop(100%,rgba(255,255,255,1)));
background: -webkit-linear-gradient(left, rgba(255,255,255,.6) 30%,rgba(255,255,255,1) 100%);
top: 0;

Note: I've stripped off cross-browser CSS gradient code, you can get it from http://www.colorzilla.com/gradient-editor/

关于最近在 CSS3 规范中引入的 rgba(),我希望您知道 RGB 代表什么,a 代表 alpha,所以不要使用 HEX 我正在使用 RGBA 并且只是在这里玩 alpha 部分

关于html - 在 div 的末尾淡入淡出文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15722975/

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