我使用以下工具为我的网站创建了一个弹出窗口:http://beeker.io/exit-intent-popup-script-tutorial。它显示在桌面上,但不是移动设备。它的目的是在用户想要离开页面时显示弹出窗口。
<script type="text/javascript" src="/files/bioep"></script>
<script type="text/javascript">
bioEp.init({
height: 165,
html: "<div id='exit_pop'><h2>Find Out What Makes the CE Pro 100 So Successful</h2><span>Download our free research report</span><a class='btn btn-lg btn-danger' href='https://ehpub.clickfunnels.com/optin8877854' target='_blank' onClick='ga('send', 'event', 'exit pop', 'click', 'CE Pro 100');' role='button'>Download My Copy</a></div>",
css: "#exit_pop {text-align:center;} #exit_pop h2 {font-size: 18pt; margin: 10px;} #exit_pop span {margin: 0 0 20px 0; display: block;}",
cookieExp: 1
});
</script>
我需要在移动设备上显示它,所以我想创建一个单独的弹出窗口。由于无法在移动设备上监控退出意图,我想设置一个计时器并在45秒后显示它。我尝试过几件事似乎没什么用。有没有人有过2个单独的弹出窗口? (1个桌面,1个移动设备)。有小费吗?或者甚至更好,有没有人使用过这个工具并让它在移动设备上工作?
感谢。