这篇“smartbanner.js如何实现可定制智能应用横幅使用”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“smartba
这篇“smartbanner.js如何实现可定制智能应用横幅使用”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“smartbanner.js如何实现可定制智能应用横幅使用”文章吧。
smartbanner.js 适用于 iOS 和 Android 的可定制智能应用横幅(smart app banner)。
<!-- Start SmartBanner configuration --><meta name="smartbanner:title" content="Smart Application"><meta name="smartbanner:author" content="SmartBanner Contributors"><meta name="smartbanner:price" content="FREE"><meta name="smartbanner:price-suffix-apple" content=" - On the App Store"><meta name="smartbanner:price-suffix-Google" content=" - In Google Play"><meta name="smartbanner:icon-apple" content="https://file.lsjlt.com/upload/202307/04/153vlgx5rao.png"><meta name="smartbanner:icon-google" content="Https://file.lsjlt.com/upload/202307/04/aezwbwyyg13.png"><meta name="smartbanner:button" content="VIEW"><meta name="smartbanner:button-url-apple" content="https://ios/application-url"><meta name="smartbanner:button-url-google" content="https://android/application-url"><meta name="smartbanner:enabled-platfORMs" content="android,ios"><meta name="smartbanner:close-label" content="Close"><!-- End SmartBanner configuration -->
引用 javascript 和 CSS:
<link rel="stylesheet" href="node_modules/smartbanner.js/dist/smartbanner.min.css" rel="external nofollow" ><script src="node_modules/smartbanner.js/dist/smartbanner.min.js"></script>
其实就是通过js去修改meta
if (navigator.language?.includes("zh")) { document .querySelector('meta[name="smartbanner:button"]') .setAttribute("content", "查看");}
需要先移除对应的meta,禁用按钮点击事件
<!-- <meta name="smartbanner:button-url-apple" content="https://ios/application-url"> <meta name="smartbanner:button-url-google" content="https://android/application-url"> -->
document.addEventListener("smartbanner.view", () => { document.querySelector(".js_smartbanner__button").onclick = () => false;});document.addEventListener("smartbanner.clickout", () => { // 在这里做其它操作,比如手动关闭横幅 smartbanner.exit();});
先新增meta禁用自动添加到DOM,再调用api手动添加到DOM。判断微信浏览器的代码我就不贴出来了。
<meta name="smartbanner:api" content="true">
const apiHandler = () => { if (is_weixn()) return; setTimeout(() => { if (smartbanner) smartbanner.publish(); }, 500);};window.onload = apiHandler;
以上就是关于“smartbanner.js如何实现可定制智能应用横幅使用”这篇文章的内容,相信大家都有了一定的了解,希望小编分享的内容对大家有帮助,若想了解更多相关的知识内容,请关注编程网精选频道。
--结束END--
本文标题: smartbanner.js如何实现可定制智能应用横幅使用
本文链接: https://lsjlt.com/news/350562.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0