"SlideToggle form bottom"
Bootstrap 3.3.0 Snippet by naimansari

<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <div class="container"> <div class="wrapper"> <h2><button class="btn btn-primary">Click Here</button></h2> </div> <div class="row"> <article> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry. </article> </div> </div>
.container { text-align:center; } .wrapper { text-align:center; position:absolute; bottom:0px; z-index:5; } h2 { margin:0; text-align:center; } .btn { background-color:#333; border-radius:0; } article { padding:100px; background-color:#333; color:#fff; text-align:center; position:absolute; bottom:0; display:none; z-index:4; margin-bottom:34px; }
$(document).ready(function(){ $(".btn").click(function(){ $("article").slideToggle("slow"); }); });

Related: See More


Questions / Comments: