jquery - ResponsiveSlides fixed height, not responsive -
jquery - ResponsiveSlides fixed height, not responsive -
i'm using responsiveslides project of mine. problem on big screens , height of slide gigantic , can't seem adjust , because if do, either image gets cutting or height of image shrinks bad ration. i've tried max-height on img , doesn't solve anything. i'm looking background-size: cover; achieve.
i can't upload jsfiddle because doesn't work, responsiveslides doesn't have cdn.
what should do?
here screenshots:
fullscreen : https://www.dropbox.com/s/dpnjxr9rltspxre/screenshot%202015-04-11%2016.03.49.png?dl=0
i want (which half size) : https://www.dropbox.com/s/7a8hmmp5txzoc7k/screenshot%202015-04-11%2016.04.26.png?dl=0
also having problems making div within slider, responsive, that's time.
css:
.rslides position relative list-style none overflow hidden width 100% padding 0 margin 0 li -webkit-backface-visibility hidden position absolute display none width 100% left 0 top 0 &::first-child position relative display block float left img display block height auto float left width 100% border 0 .caption position absolute display block text-align center width 20% margin 15% auto 0 auto left 0 right 0 padding 40px 80px background-color rgba(0,0,0,0.3) p font-size 18px margin-bottom 60px font-weight 400
html:
<ul class="rslides"> <li> <img src="http://hdwallpaperd.com/wp-content/uploads/city_of_love-wallpaper-5120x3200.jpg" alt=""> <div class="caption"> <h2>bem vindo à fgsm</h2> <p>lorem ipsum dolor sit down amet, consectetur adipisicing elit. id quam tempora ex provident ab laboriosam consequuntur, alias.</p> <a href="" class="btn-cta">sobre nós</a> </div> </li> <li> <img src="http://hdwallpaperd.com/wp-content/uploads/city_of_love-wallpaper-5120x3200.jpg" alt=""> <div class="caption"> <h2>bem vindo à fgsm</h2> <p>lorem ipsum dolor sit down amet, consectetur adipisicing elit. id quam tempora ex provident ab laboriosam consequuntur, alias.</p> <a href="" class="btn-cta">sobre nós</a> </div> </li> <li> <img src="http://hdwallpaperd.com/wp-content/uploads/city_of_love-wallpaper-5120x3200.jpg" alt=""> <div class="caption"> <h2>bem vindo à fgsm</h2> <p>lorem ipsum dolor sit down amet, consectetur adipisicing elit. id quam tempora ex provident ab laboriosam consequuntur, alias.</p> <a href="" class="btn-cta">sobre nós</a> </div> </li> </ul>
jquery html css
Comments
Post a Comment