在调整大小时修复边距左侧位置

时间:2015-01-13 12:02:10

标签: javascript jquery html

我想在调整大小时修复我的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();
});

1 个答案:

答案 0 :(得分:0)

使用 marginLeft 而非'margin-left'http://jsfiddle.net/snsuu27x/

.css({marginLeft : wd+'px'})