以下將展示微信小程序之視圖容器root-portal源碼官方組件能力,組件樣式僅供參考,開發(fā)者可根據(jù)自身需求定義組件樣式,具體屬性參數(shù)詳見小程序開發(fā)文檔。
功能描述:
使整個子樹從頁面中脫離出來,類似于在 CSS 中使用 fixed position 的效果。主要用于制作彈窗、彈出層等。
示例代碼:
WXML:
<view class="intro">
? <button bindtap="toggle">顯示 root-portal</button>
? <root-portal wx:if="{{ show }}">
? ? <view class="portal-content">
? ? ? root-portal 內(nèi)容
? ? </view>
? </root-portal>
</view>
版權(quán)聲明:本站所有內(nèi)容均由互聯(lián)網(wǎng)收集整理、上傳,如涉及版權(quán)問題,請聯(lián)系我們第一時間處理。
原文鏈接地址:https://developers.weixin.qq.com/miniprogram/dev/component/root-portal.html