所以我在页面上有一个内容滑块:http: //helpmyedu.com/asdtest-2,我想让它响应式(100% 宽度)..
通过更改开发人员工具中的以下代码,我已成功使其响应:
但是,我只能更改样式表中的前 100%,下面的两个是由这段 javascritp 控制的:
<script type="text/javascript">
$(document).ready(function() {
$.noConflict();
jQuery('#services-example-1').services(
{
width:1144,
height:300,
slideAmount:6,
slideSpacing:30,
touchenabled:"on",
mouseWheel:"on",
hoverAlpha:"off",
slideshow:6000,
hovereffect:"on",
callBack:function() { }
});
});
</script>
如何将“宽度:1144”转换为 %?
或者我可以让这个滑块响应吗?多谢!