您好,登錄后才能下訂單哦!
這篇“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://cache.yisu.com/upload/information/20230302/112/25578.png"> <meta name="smartbanner:icon-google" content="https://cache.yisu.com/upload/information/20230302/112/25579.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如何實現可定制智能應用橫幅使用”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。