Bootstrap 3 cover homepage (full screen) first section -
Bootstrap 3 cover homepage (full screen) first section -
i using bootstrap 3 site template. construction of homepage like
<nav> <section 1> <section 2> <section 3> <footer> <section 1> has total screen, cover whole screen. when scroll downwards see <section 2>, <section 3> etc.
how do this?
you may utilize jquery create 'section' cover whole screen height
$(document).ready(function(){ $('section 1').css({ 'height': $(window).height()+'px' }) }); twitter-bootstrap twitter-bootstrap-3 fullscreen cover
Comments
Post a Comment