gpt4 book ai didi

html - 动画-webkit-text-fill-color

转载 作者:行者123 更新时间:2023-11-28 02:27:47 26 4
gpt4 key购买 nike

尝试使用 -webkit-text-fill-color 为文本的透明度设置动画

a {
color: #fff;
-webkit-text-fill-color: rgba(255,255,255,0);
-webkit-text-stroke-width: 2px;
-webkit-text-stroke-color: #fff;
-webkit-text-stroke: 2px white;
-webkit-transition: all .5s ease-out;
-moz-transition: all .5s ease-out;
-o-transition: all .5s ease-out;
transition: all .5s ease-out;
}
a:hover {
-webkit-text-fill-color: rgba(255,255,255,1);
}

我无法将颜色设置为透明,因为 -webkit-text-fill-color 和 -webkit-text-stroke 在 IE 上的兼容性问题。

最佳答案

抱歉,我没有 IE 浏览器在我的 mac 上测试它,请试试这个代码

a {

color: #d5d5d5;
-webkit-text-fill-color: rgba(225,255,255,0);
-webkit-text-stroke-width: 2px;
-webkit-text-stroke-color: #d5d5d5;
-webkit-text-stroke: 2px #d5d5d5;
-webkit-transition: all .5s ease-out;
-moz-transition: all .5s ease-out; /*gecko*/
-ms-transition: all .5s ease-out; /*IE10*/
-o-transition: all .5s ease-out; /*opera 11.10+*/
-pie-transition: all .5s ease-out; /*PIE*/
transition: all .5s ease-out;
}
a:hover {
color: #000;
-webkit-text-fill-color: rgba(255,255,255,1);
-webkit-text-stroke-width: 2px;
-webkit-text-stroke-color: #000;
-moz-transition: all .5s ease-out; /*gecko*/
-ms-transition: all .5s ease-out; /*IE10*/
-o-transition: all .5s ease-out; /*opera 11.10+*/
-pie-transition: all .5s ease-out; /*PIE*/
transition: all .5s ease-out;
}
<a href="#">Test</a>

关于html - 动画-webkit-text-fill-color,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47863344/

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