gpt4 book ai didi

html - 奇怪的 CSS3 过渡(闪烁)

转载 作者:技术小花猫 更新时间:2023-10-29 11:40:40 24 4
gpt4 key购买 nike

当我将鼠标悬停在我的按钮上时,它会在开始转换时先发出白色闪光。为什么当我将 css3 转换应用到我的按钮时它会闪烁? 我的浏览器是 Google Chrome

See here


<button>Log In</button>​

CSS:

button {
background: #ff3019;
background: -moz-linear-gradient(top, #ff3019 0%, #cf0404 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff3019), color-stop(100%,#cf0404));
background: -webkit-linear-gradient(top, #ff3019 0%,#cf0404 100%);
background: -o-linear-gradient(top, #ff3019 0%,#cf0404 100%);
background: -ms-linear-gradient(top, #ff3019 0%,#cf0404 100%);
background: linear-gradient(top, #ff3019 0%,#cf0404 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff3019', endColorstr='#cf0404',GradientType=0 );
border:1px solid #890000;
display:block;
margin:0 auto;
width:200px;
padding:5px 0;
border-radius:8px;
color:#fff;
font-weight:700;
text-shadow:0 1px 1px #000+50;
box-shadow:0 2px 3px #000+150;
-webkit-transition:background linear .5s;
}
button:hover {
background:#ff3019;
}
button:active {
background:#cf0404;
}

最佳答案

我摆脱了闪烁。添加 «-webkit-backface-visibility: hidden;» 到您正在转换的元素。瞧!

关于html - 奇怪的 CSS3 过渡(闪烁),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10134935/

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