gpt4 book ai didi

javascript - 如何向此脚本添加平滑过渡

转载 作者:行者123 更新时间:2023-12-03 12:41:45 25 4
gpt4 key购买 nike

如何在显示 block 和隐藏时添加平滑过渡:

$(document).ready(function(){
$(".userBox").mouseover(function () {
$(this).find('.inBox').css({ display: "block" });
$(this).find('.boxDisc').css({ display: "block" });
$(".userBox").mouseout(function () {
$(this).find('.inBox').css('display', 'none');
$(this).find('.boxDisc').css('display', 'none');
});
});
});

因为现在它是即时的,而且看起来不太好。谢谢!

最佳答案

一种方法是使用jQuery fading methods :

$(document).ready(function () {
$(".userBox").mouseover(function () {
$(this).find('.inBox').stop().fadeIn('fast');
$(this).find('.boxDisc').stop().fadeIn('fast');
$(".userBox").mouseout(function () {
$(this).find('.inBox').stop().fadeOut('fast');
$(this).find('.boxDisc').stop().fadeOut('fast');
});
});
});

示例:

<强> http://jsfiddle.net/L9t4J/

关于javascript - 如何向此脚本添加平滑过渡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23504464/

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