gpt4 book ai didi

jquery - 如何添加淡入和淡出功能以在悬停功能上播放?

转载 作者:行者123 更新时间:2023-12-01 05:31:43 25 4
gpt4 key购买 nike

我有以下代码,可在悬停在对象上时激活声音,但想添加简单的淡入和淡出效果(悬停时淡入,悬停时淡出)。会很高兴得到提示。

function PlaySound(soundobj) {
var thissound=document.getElementById(soundobj);
thissound.play()}

function StopSound(soundobj) {
var thissound=document.getElementById(soundobj);
thissound.pause();
thissound.currentTime = 0;}

最佳答案

谢谢你。

看来还是不行啊。我纠正了一些事情并首先尝试:

 function PlaySound(soundobj) {
var thissound=document.getElementById(soundobj);

/* putting sound on hold and setting volume to 0 */
thissound.pause().prop("volume", 0);

/* on mouse hover event, play sound and fade in the volume in 1s */
thissound.mouseover(function() {
thissound.play().animate({volume: 1}, 1000);
});}

function StopSound(soundobj) {
var thissound=document.getElementById(soundobj);

/* on mouse out event, fade out the volume in 1s */
thissound.mouseout(function() {
thissound.animate({volume: 0}, 1000)}
});
thissound.pause();
thissound.currentTime = 0;
}

我的问题是,初始音量设置是否应与 PlaySound 功能分开?mouseout 函数中的行应为: thissound.play().animate({volume: 0}, 1000)}

谢谢

关于jquery - 如何添加淡入和淡出功能以在悬停功能上播放?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36816498/

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