我正在使用Reveal Modal(http://zurb.com/playground/reveal-modal-plugin)在访问者首次访问 时触发模式弹出框,使用jQuery Cookie设置cookie(https://github.com/carhartl/jquery-cookie )。
以下是模态的代码(在移动设备上显示GIF):
<div id="myModal" class="reveal-modal">
</div>
<script type="text/javascript">
var isMobile = navigator.userAgent.match(/(iPhone|iPod|iPad|Android|BlackBerry)/);
var myModal = document.getElementById('myModal');
if(!isMobile) {
// User-Agent is not IPhone, IPod, IPad, Android or BlackBerry
myModal.innerHTML += '<video autoplay>' +
'<source src="video/LogoOpening.mp4" type="video/mp4"/>' +
'<source src="video/LogoOpening.ogg" type="video/ogg"/>' +
'<source src="video/LogoOpening.webm" type="video/webm"/>' +
'</video>' +
'<a class="close-reveal-modal"><div class="button4">Close</div></a>';
} else {
myModal.innerHTML += '<img src="images/ThroughTheYears.gif" alt="Logo History" />' +
'<a class="close-reveal-modal"><div class="button4">Close</div></a>' +
'</div>';
}
</script>
...这里是检查cookie后触发模态的Javascript:
<script>
$(document).ready(function() {
if ($.cookie('modal_shown') == null) {
$.cookie('modal_shown', 'yes', { expires: 30, path: '/' });
$('#myModal').reveal({
animation: 'fade', //fade, fadeAndPop, none
animationspeed: 500, //how fast animtions are
closeonbackgroundclick: true, //if you click background will modal close?
dismissmodalclass: 'close-reveal-modal' //the class of a button or element that will close an open modal
});
}
});
</script>
所以,这就是问题:当我的访问者第一次出现时,视频会完美地启动并自动播放,就像它应该一样(类似的动画GIF在移动设备上播放)只);然而,视频有声音,并且在随后的访问中视频自动播放并且您听到音频,但模式不会在视觉上触发(模态和视频保持隐藏状态) )。
我认为解决方案是以某种方式将视频的静音属性绑定到检查Javascript的cookie(它确定模式是否会触发),但我不确定如何编码。 帮助吗
答案 0 :(得分:0)
这样的事情应该起作用
if (!isMobile) {
// User-Agent is not IPhone, IPod, IPad, Android or BlackBerry
if ($.cookie('modal_shown') == null) {
myModal.innerHTML += '<video autoplay controls>'
} else {
myModal.innerHTML += '<video autoplay muted controls>'
}
myModal.innerHTML += '<source src="video/LogoOpening.mp4" type="video/mp4"/>' +
....
....
'</video>' +
...添加Cookie model_shown
的额外检查可让您更改视频是否会自动播放,或者会自动播放但会被静音(如果您不希望自动播放,则可以删除该视频,其中也可能不需要静音。我还添加了controls
,以便用户可以根据需要手动控制音量或播放/暂停
希望这会有所帮助(如果不是你需要的只是评论,我会尽力接近)