javascript - Full height image on mobile device -


how can place image on website have album(horizontal) image. needed place on mobile devices image height of image full device height...and need avaliable horizontal scroll.. thatenter image description here

example:

css-file

html,body {     height:100%;     margin:0px; } .img-album {     height:100%;     overflow-y:hidden; } .img-album > img {     height:100%; } 

html

<div class="img-album">     <img src="http://cdn.wonderfulengineering.com/wp-content/uploads/2014/09/new-wallpaper-3.jpg" /> </div> 

jsfiddle


Comments