"SlideToggle form bottom"
Bootstrap 3.0.0 Snippet by prabuanan

<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.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: