miniprogram-demo/packageAPI/pages/vibrate/vibrate.wxml

21 lines
584 B
Plaintext
Raw Normal View History

2020-12-08 11:06:05 +08:00
<!--pages/API/vibrate/vibrate.wxml-->
<import src="../../common/head.wxml" />
<import src="../../common/foot.wxml" />
<view class="container">
<template is="head" data="{{title: 'vibrate/Long/Short'}}"/>
2020-12-10 10:33:36 +08:00
<view class="tips">目前仅iOS支持安卓暂时不支持</view>
2020-12-08 11:06:05 +08:00
<view class="page-body">
<view class="page-section">
<view class="btn-area">
<button type="primary" bindtap="vibrateLong">长振动</button>
<button type="default" bindtap="vibrateShort">短振动</button>
</view>
</view>
</view>
<template is="foot" />
</view>