震动 API 是在 VibrationIOS.vibrate()
里显示的。在 iOS 上,调用这个函数可以出发一秒钟的振动。振动是异步的,所以这个方法会立即返回。
这对不支持振动的设备是没有任何影响的,例如,iOS 模拟器。
目前是不支持振动模式的。
static vibrate()
Edit on GitHub
"use strict";var React = require("react-native");var { StyleSheet, View, Text, TouchableHighlight, VibrationIOS } = React; exports.framework = "React"; exports.title = "VibrationIOS"; exports.description = "Vibration API for iOS"; exports.examples = [{ title: "VibrationIOS.vibrate()", render() { return ( <TouchableHighlight style={styles.wrapper} onPress={() => VibrationIOS.vibrate()}> <View style={styles.button}> <Text>Vibrate</Text> </View> </TouchableHighlight> ); }, }];var styles = StyleSheet.create({ wrapper: { borderRadius: 5, marginBottom: 5, }, button: { backgroundColor: "#eeeeee", padding: 10, }, });
使用DatePickerIOS来在 iOS 上呈现一个日期/时间选择器(selector)。这是一个控制组件,所以为了组件更新,你必须钩在onDate...
jQuery Mobile pagecontainerload 事件 jQuery Mobile 事件实例在页面成功载入并插入到 DOM 后弹出文本信息:$(document).on(pag...
jQuery Mobile pageshow 事件jQuery Mobile 事件实例 在页面切换后显示之后弹出信息:$(document).on("pageshow","#pagetwo",fun...
jQuery Mobile pagehide 事件jQuery Mobile 事件实例 在页面切换后旧的页面隐藏之后弹出一些文本信息:$(document).on("pagehide...
jQuery Mobile swipe 事件jQuery Mobile 事件实例 在元素p上水平滑动隐藏它:$("p").on("swipe",function(){ $(this).hide();})...