support.transforms
如果浏览器支持css3 transforms(变形)返回 true。
IE7、IE8、IE9等会返回false。
IE7、IE8、IE9等会返回false。
使用方法示例
<script>
var mySwiper = new Swiper('.swiper-container',{
})
$('#btn1').click(function(){
if(mySwiper.support.transforms){alert('当前浏览器支持变形');}else{alert('当前浏览器不支持变形');}
})
</script>
转载原创文章请注明:文章转载自:Swiper中文网 [https://2.swiper.com.cn]
本文地址:https://2.swiper.com.cn/api/method/2014/1218/122.html