响应式,窗口变化,执行代码
Posted ghfjj
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了响应式,窗口变化,执行代码相关的知识,希望对你有一定的参考价值。
1 $(window).resize(function(event) { 2 /* Act on the event */ 3 if($(window).width()<1200){ 4 $(‘.info_imgscroll .bigimgbox‘).owlCarousel({ 5 ‘itemsDesktop‘:[1199,1], 6 ‘itemsDesktopSmall‘:[979,1], 7 ‘itemsTablet‘:[768,1], 8 ‘itemsMobile‘:[479,1] 9 }); 10 } 11 }); 12 if($(window).width()<1200){ 13 $(‘.info_imgscroll .bigimgbox‘).owlCarousel({ 14 ‘itemsDesktop‘:[1199,1], 15 ‘itemsDesktopSmall‘:[979,1], 16 ‘itemsTablet‘:[768,1], 17 ‘itemsMobile‘:[479,1] 18 }) 19 }
以上是关于响应式,窗口变化,执行代码的主要内容,如果未能解决你的问题,请参考以下文章
html 将以编程方式附加外部脚本文件的javascript代码片段,并按顺序排列。用于响应式网站,其中ma
Vue3官网-高级指南(十七)响应式计算`computed`和侦听`watchEffect`(onTrackonTriggeronInvalidate副作用的刷新时机`watch` pre)(代码片段