我对 js 比较陌生,我一生都无法弄清楚这个功能的问题。我只是想在页面调整大小时调整 div 的宽度。如果与它有任何关系,还包括 css。
<div id="lowerPattern"></div>
<script>
$( window ).bind("resize", function() {
// Change the width of the div
$("#lowerPattern").css('width', '300px');
});
</script>
/*CSS*/
#lowerPattern {
height: 99px;
width: 10px;
background-color: green;
/*Keeps div centered on resize*/
position: absolute;
left: 50%;
margin-left: -300px;
}