我正在使用bootstrap来构建我的网站,我想添加一些耀斑。我在这里读过一些东西,但找不到我想要的东西。
答案 0 :(得分:2)
您应该使用HTML音频标记
var sidebarFloat = $('.sidebar').css('float');
$('.sidebar').hover(function() {
sidebarFloat = $(this).css('float');
if (sidebarFloat == 'right') {
$(this).stop().animate({
left: "0px"
}, 500)
} else if (sidebarFloat == 'left') {
$(this).stop().animate({
left: "0px"
}, 500)
}
}, function() {
var width = $(this).width() - 10;
if (sidebarFloat == 'right') {
$(this).stop().animate({
left: +width
}, 500);
} else if (sidebarFloat == 'left') {
$(this).stop().animate({
left: -width
}, 500);
}
});
你可以尝试here。当您转到链接并刷新时,添加我上面的自动播放。
注意:您也可以使用CSS隐藏音频播放器,并使用您自己的按钮隐藏write custom javascript to control the audio。