gpt4 book ai didi

jquery - 逐步将 bootstrap img-circle 过渡到 img-rounded

转载 作者:太空宇宙 更新时间:2023-11-04 04:51:51 26 4
gpt4 key购买 nike

有没有一种方法可以使图像的类别从 img-circle 更改为 img-rounded,不是立即而是通过鼠标悬停逐渐更改?

我知道它必须通过 javascript/jquery 完成,因为没有其他方法可以更改对象的类

最佳答案

既有基于 CSS 的解决方案,也有基于 jQuery 的解决方案。下面的代码,加上两者的工作示例 http://jsfiddle.net/technotarek/K52j4/ :

jQuery

$(".js").hover(function() {
$(this).animate({
"border-radius": "6px"
});
}, function() {
$(this).animate({
"border-radius": "500px"
});
});​

CSS3(无需 javascript;仅适用于现代浏览器)

img.css {
-webkit-transition:border-radius 0.8s linear;
-moz-transition:border-radius 0.8s linear;
-o-transition:border-radius 0.8s linear;
transition:border-radius 0.8s linear;
}
img.css:hover {
border-radius: 6px;
}

关于jquery - 逐步将 bootstrap img-circle 过渡到 img-rounded,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13329557/

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