作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下代码,可在悬停在对象上时激活声音,但想添加简单的淡入和淡出效果(悬停时淡入,悬停时淡出)。会很高兴得到提示。
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/
我是一名优秀的程序员,十分优秀!