mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
* change example dir * Update README.md 更新预览教程 * 新增 layout 组件 * exclude example * change .wxss -> .pcss * 脚本目录更名为 scripts
31 lines
809 B
Plaintext
31 lines
809 B
Plaintext
<view class="container">
|
|
|
|
<view class="doc-title">POPUP</view>
|
|
|
|
<view class="zan-btns" style="margin-top: 30vh;">
|
|
<button class="zan-btn" bindtap="toggleLeftPopup">
|
|
从左边弹出popup
|
|
</button>
|
|
<button class="zan-btn" bindtap="toggleRightPopup">
|
|
从右边弹出popup
|
|
</button>
|
|
</view>
|
|
|
|
<view class="zan-popup zan-popup--left {{ showLeftPopup ? 'zan-popup--show' : ''}}">
|
|
<view style="padding: 15px;">
|
|
<button class="zan-btn" bindtap="toggleLeftPopup">
|
|
关闭 popup
|
|
</button>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="zan-popup zan-popup--right {{ showRightPopup ? 'zan-popup--show' : ''}}">
|
|
<view style="padding: 15px;">
|
|
<button class="zan-btn" bindtap="toggleRightPopup">
|
|
关闭 popup
|
|
</button>
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|