jquery动态更换背景图片
文章描述:
jquery如何动态更换背景图片
html
<div class="thumb"></div>
css
.thumb{ width:100px; height:100px; background:url('images/1.jpg') no-repeat; background-size:100%; display:block; }
javascript
$('.thumb').css('background','url(images/3.jpg) 0px 0px no-repeat').css('background-size','100%');
$('.thumb').css({'background':'url(images/3.jpg) 0px 0px no-repeat','background-size':'100%'})
发布时间:2021/12/24
发表评论