onKeyPress
在允许键盘控制状态下,按键盘时会触发这个函数。
onKeyPress参数
- 启用版本:
- 3.4.2
效果演示
按键盘会弹出提醒使用方法示例
<script>
var mySwiper = new Swiper('.swiper-container',{
keyboardControl:true,
onKeyPress: function(swiper, event){
alert('你按了键盘'+event);
}
})
</script>
转载原创文章请注明:文章转载自:Swiper中文网 [https://3.swiper.com.cn]
本文地址:https://3.swiper.com.cn/api/callbacks/2017/0314/345.html