我想在调整大小时修复我的margin-left值。 我尝试写一个水平滑块。
这是我的html标记。部分向左浮动,文章得到所有部分的宽度...... #mainSlider有一个变量宽度。
<div id="mainSlider" class="c12" >
<article class="slides">
<section>1</section>
<section>2</section>
<section>3</section>
<section>4</section>
</article>
</div>
这是测试代码片段,应该注意但不支持;)为什么?
th3width = function(){
wd = $('#mainSlider').innerWidth();
$('article').css({'margin-left' : - wd +"px" });
}
th3width();
$(window).resize(function(){
th3width();
});
答案 0 :(得分:0)
使用 marginLeft 而非'margin-left'? http://jsfiddle.net/snsuu27x/
.css({marginLeft : wd+'px'})