JS能否获取动态class的宽度并赋值给高度,目的是实现响应式正方形,附HTML和CSS

十分感谢,初步的想法实现了,但是只能赋值给一个id,而缩略图有很多。为了最终效果,我对代码做了调整,目前的情况是这样,能不能赋高度值给公用的class,这样所有的图片就都... 十分感谢,初步的想法实现了,但是只能赋值给一个id,而缩略图有很多。

为了最终效果,我对代码做了调整,目前的情况是这样,能不能赋高度值给公用的class,这样所有的图片就都获取高度了:

HTML:

<div id="thumbnailbox">

<a href="post_1.html" title="缩略图1"> <div class="thumbnail" id="1"></div> </a> </div>

<a href="post_2.html" title="缩略图2"><div class="thumbnail" id="2"></div></a>
...
</div>

一行一共四个div,自动撑满浏览器,css部分:

#humbnailbox {
width: 100%;
margin: 0 auto;
clear: both;
}
.thumbnail {
width: 25%;
float: left;

background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
#1 {
background-image: url(../images/1.jpg);
}
#2 {
background-image: url(../images/2.jpg);
}
......

感谢了,我追加50分给
展开
 我来答
匿名用户
推荐于2016-08-12
展开全部

你这样的写的话 不先赋值给thumbnail统一的高度的话恐怕页面会显得参差不齐而不是你想的4块模块平均撑开页面,还有你是把图片写进div你当背景,那就不需要js来处理这个问题。

<style>
#thumbnailbox{position: absolute;left:0;top:0;width:100%;height:100%;}
#thumbnailbox a{width:50%;height:50%;display:block;position:absolute;left:0;top:0;}
#thumbnailbox a.bg1{background:url(../images/1.jpg) 50% 50% no-repeat;}
#thumbnailbox a.bg2{left:50%;background:url(../images/2.jpg) 50% 50% no-repeat;}
#thumbnailbox a.bg3{top:50%;background:url(../images/3.jpg) 50% 50% no-repeat;}
#thumbnailbox a.bg4{left:50%;top:50%;background:url(../images/4.jpg) 50% 50% no-repeat;}
</style>
<div id="thumbnailbox">
<a href="post_1.html" title="缩略图1" class="thumbnail bg1"></a>
<a href="post_1.html" title="缩略图1" class="thumbnail bg2"></a>
<a href="post_1.html" title="缩略图1" class="thumbnail bg3"></a>
<a href="post_1.html" title="缩略图1" class="thumbnail bg4"></a>
</div>
匿名用户
2014-06-02
展开全部
为什么缩略图非要用背景图片的方式?背景图片是无法设置宽度的。直接把图片写入div中不可以吗?然后给IMG设置css就可以了呀。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式