gpt4 book ai didi

jquery - 基本 jquery 如何组合当前的幻灯片/淡入淡出元素并修复不透明度?

转载 作者:行者123 更新时间:2023-11-28 13:41:06 24 4
gpt4 key购买 nike

注意 #element2,我有两个函数,但只有滑动函数有效。我希望当你将鼠标悬停在它上面时,你会以 50% 的不透明度开始并逐渐变为 100%

代码如下:

  $("#element2").hover(function() {
$("#next").show("slide", { direction: "right" }, 300);
$("#next").fadeIn(300);
},
function() {
$("#next").hide("slide", { direction: "right" }, 300);
$("#next").fadeOut(300);
});

这是实际的代码: http://jsfiddle.net/pQzWp/9/

最佳答案

这里有一个很好的答案:

http://css-tricks.com/snippets/jquery/combine-slide-and-fade-functions/

你应该使用animate。在您的特定情况下,我认为以下内容应该有效:

$("#next").animate({opacity: 'toggle', width: 'toggle'}, 300);

关于jquery - 基本 jquery 如何组合当前的幻灯片/淡入淡出元素并修复不透明度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7617818/

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