2014-11-06 56 views

回答

0

試試下面的CSS:

img { height:80%; } 

img { height:80vh; } 
+0

謝謝,我曾希望這將是簡單的。雖然我沒有看到任何結果[here](http://www.leecorbin.co/test/index-stack-2.html)。 – 2014-11-06 16:35:38

+0

您註釋掉了CSS。 – 2014-11-06 17:40:16

+0

我刪除了評論,沒有看到任何[區別](http://www.leecorbin.co/test/index-stack-2.html)。 – 2014-11-06 17:57:52

0

你不需要任何JavaScript來做到這一點是非常簡單的。你應該添加HTML和身體寬度和高度到100%。 這裏是jfiddle鏈接:http://jsfiddle.net/jmarikle/vz7q2bnk/

<html> 
<body> 
<img src="http://lorempixel.com/400/500" /> 
</body> 
</html> 

<!--css part--> 
html, body { 
    width: 100%; 
    height: 100%; 
} 
img{height:100%; width:auto; vertical-align: top;} 
+0

謝謝,我實施了[你的解決方案](http://www.leecorbin.co/test/index-stack-1.html),但沒有看到任何結果。 – 2014-11-06 16:32:22