gpt4 book ai didi

jquery - css3 转换在 mozilla 中不起作用,但其他浏览器可以

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

我一直在尝试使用 css3 转换在 mozilla im 上运行我的代码..

.header {
width:100%;
height:160px;
-webkit-transition:all 0.5s ease;
-moz-transition:all 0.5s ease;
}
 $(window).scroll(function() {
$('.header').css({ 'height':'80px' });
});

问题是在 mozilla 中没有过渡动画,而在 chrome 中有。

最佳答案

DEMO

试试这个:

-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;

解释:

-webkit-...  // For Webkit browser(Chrome, Safari...)
-moz-... // For Mozilla browser
-ms-... // For Microsoft browser
-o-... // For Opera browser
none... // For all browser(Newest version)

Reference

关于jquery - css3 转换在 mozilla 中不起作用,但其他浏览器可以,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27060624/

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