弹出窗口的文本和图标在某些Android设备上不显示。这是video显示会发生什么。
这不会发生在桌面或iOS上。
这是我的网站上的代码:
<script>
setTimeout(function(){
swal({
title: "How can we help?",
text: "Do you need to sell your house?",
type: "info",
animation: true,
showCancelButton: true,
confirmButtonText: "Yes",
cancelButtonText: "No",
closeOnConfirm: false,
closeOnCancel: false },
function(isConfirm){
if (isConfirm) {
swal({
title: "We can help!",
text: "We have all the information you need, ready to see it?",
type: "success",
confirmButtonText: "Show me!",
cancelButtonText: "No thanks"
},
function(){
window.location.href = '/sell-your-house/';
});
}
else {
swal({
title: "That's okay!",
text: "We'll be here when you need us!",
type: "error",
confirmButtonText: "Back to Browsing",
});
}
});
}, 5000);
</script>
我正在使用动画:&#34;从顶部滑动&#34;并尝试改为“真正的&#39;但那并没有帮助。我也尝试过“假”&#39;并且只是排除了这一行,&#34;动画:&#34;。
我认为在弹出可能帮助之前不久阻止滚动,但我也不知道如何做到这一点。它也像一个黑客而不是一个真正的解决方案......
有什么想法吗?
谢谢! 戴夫