"aa"
Bootstrap 4.0.0 Snippet by STARTSTEVEN

<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/4.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="row"> <h2>Create your snippet's HTML, CSS and Javascript in the editor tabs</h2> </div> </div>
.container{ background:RED; position:relative; width: 100px; border: solid green; border:0px; padding: 25px; margin: 25px; height:100px } .row{ width: 300px; position:absolute; }
$(document).ready(function(){ $('.container').hover(function(){ $(this).animate({ width: '300px', border:'25px', padding: '25px', margin: '25px', height:'300px' }); }); });

Related: See More


Questions / Comments: