我希望根据图像尺寸将图像放置在 div 中。例如:
- Div1:任何宽度> 600的图像都放在这里。
Div2:任何高度> 800的图像都放在这里。
img1 尺寸 = 宽度:601 像素;高度:300px;将此图像放在 Div1 上。
- img2 尺寸 = 宽度:400 像素;高度:850px;将此图像放在 Div2 中。
我怎样才能使用 javascript 做到这一点?
这就是我试图做到的方式。
#Div1{
width:600px;
height:auto;
}
#Div2{
width:auto;
height:600px;
}
var imageUrl = new Array();
imageUrl[2] = '<img id="checkfunctionfirst" src="img1.jpg">'
imageUrl[3] = '<img id="checkfunctionfirst" src="img2.jpg">'
imageUrl[5] = '<img id="checkfunctionfirst" src="img3.jpg">'
function checkfunctionfirst () {
for(i=0;i<=imageUrl.length;i++){
if(imageUrl[i].width>600){
//place this image on Div1
}
if(imageUrl[i].height>800){
//place this image on Div2
}
}
}
谢谢