"Our Services box design in bootstrap"
Bootstrap 4.1.1 Snippet by mdwaris198

<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/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"> <div class="col-md-3"> <div class="box"> <div class="text-center"> <img src="http://motothemes.com/traininginstitute-v/modern-style-learning/wp-content/uploads/sites/9/2017/05/1.png" alt="Learn courses online"> <h6>Learn courses online</h6> <p>Aliquam erat volutpat. Donec laoreet iaculis [...]</p> </div> <div></div> </div> </div> <div class="col-md-3"> <div class="box"> <div class="text-center"> <img src="http://motothemes.com/traininginstitute-v/modern-style-learning/wp-content/uploads/sites/9/2017/05/1.png" alt="Learn courses online"> <h6>Learn courses online</h6> <p>Aliquam erat volutpat. Donec laoreet iaculis [...]</p> </div> <div></div> </div> </div> <div class="col-md-3"> <div class="box"> <div class="text-center"> <img src="http://motothemes.com/traininginstitute-v/modern-style-learning/wp-content/uploads/sites/9/2017/05/1.png" alt="Learn courses online"> <h6>Learn courses online</h6> <p>Aliquam erat volutpat. Donec laoreet iaculis [...]</p> </div> <div></div> </div> </div> <div class="col-md-3"> <div class="box"> <div class="text-center"> <img src="http://motothemes.com/traininginstitute-v/modern-style-learning/wp-content/uploads/sites/9/2017/05/1.png" alt="Learn courses online"> <h6>Learn courses online</h6> <p>Aliquam erat volutpat. Donec laoreet iaculis [...]</p> </div> <div></div> </div> </div> </div> </div>
body{ background: #000; } .box{ width: 250px; height: 250px; background: #fff; padding: 30px; position: relative; overflow: hidden; } .box:before{ position: absolute; content: ''; background: orange; width: 250px; height: 350px; /*top: -260;*/ /*right: -260;*/ border-radius: 100%; /* transition: all 0.3s cubic-bezier(0.905, 0.395, 0.120, 0.550); */ -webkit-transition: all 0.3s cubic-bezier(0.905, 0.395, 0.120, 0.550); -moz-transition: all 0.3s cubic-bezier(0.905, 0.395, 0.120, 0.550); -ms-transition: all 0.3s cubic-bezier(0.905, 0.395, 0.120, 0.550); -o-transition: all 0.3s cubic-bezier(0.905, 0.395, 0.120, 0.550); opacity: 0.5; } .box:hover:before{ width: 800px; height: 800px; opacity: 1; }

Related: See More


Questions / Comments: