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

21 lines
584 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<!--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'}}"/>
<view class="tips">目前仅iOS支持安卓暂时不支持</view>
<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>