Toggle navigation
Bootsnipp
Bootstrap
For
CSS Frameworks
Bootstrap
Foundation
Semantic UI
Materialize
Pure
Bulma
References
CSS Reference
Tools
Community
Page Builder
Form Builder
Button Builder
Icon Search
Dan's Tools
Diff / Merge
Color Picker
Keyword Tool
Web Fonts
.htaccess Generator
Favicon Generator
Site Speed Test
Snippets
Featured
Tags
By Bootstrap Version
4.1.1
4.0.0
3.3.0
3.2.0
3.1.0
3.0.3
3.0.1
3.0.0
2.3.2
Register
Login
"Animated Team Section"
Bootstrap 4.0.0 Snippet by
mehedidb
4.0.0
Preview
HTML
CSS
View Full Screen
Forked from
Fork
Fork this
Parent
1.4K
 
0 Fav
Post to Facebook
Tweet this
<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="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <head> <title>New Ui </title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> <link rel="stylesheet" href="css/bootstrap.css"> <script src="js/bootstrap.js"></script> <script src="js/bootstrap.min.js"></script> <script src="js/jquery-3.2.1.min.js"></script> <link href="css/team.css" rel="stylesheet"> </head> <body> <br><br><br><br><br><br><br> <div class="container"> <div class="row"> <div class="col-md-12 text-center"> <h1>Animated Our Team Section</h1> </div> </div> <div class="row"> <div class="col-md-3 col-sm-6"> <div class="our-team"> <div class="pic"> <img src="https://bootsnipp.com/img/avatars/552882bc08538da46b0a8ede8b106e3668c80a42.jpg" > </div> <div class="team-content"> <h3>Raj Kumar</h3> <span class="post"> Web Designer </span> </div> <ul class="social"> <li><a href="" class="fa fa-facebook"></a></li> <li><a href="" class="fa fa-twitter"></a></li> <li><a href="" class="fa fa-google-plus"></a></li> <li><a href="www.linkedin.com/in/raj-kumar-web-designer " class="fa fa-linkedin"></a></li> </ul> </div> </div> <div class="col-md-3 col-sm-6"> <div class="our-team"> <div class="pic"> <img src="https://bootsnipp.com/img/avatars/552882bc08538da46b0a8ede8b106e3668c80a42.jpg" > </div> <div class="team-content"> <h3>Raj Kumar</h3> <span class="post"> Web Designer </span> </div> <ul class="social"> <li><a href="https://www.facebook.com/profile.php?id=100012512077239" class="fa fa-facebook"></a></li> <li><a href="" class="fa fa-twitter"></a></li> <li><a href="" class="fa fa-google-plus"></a></li> <li><a href="www.linkedin.com/in/raj-kumar-web-designer " class="fa fa-linkedin"></a></li> </ul> </div> </div> <div class="col-md-3 col-sm-6"> <div class="our-team"> <div class="pic"> <img src="https://bootsnipp.com/img/avatars/552882bc08538da46b0a8ede8b106e3668c80a42.jpg" > </div> <div class="team-content"> <h3>Raj Kumar</h3> <span class="post"> Web Designer </span> </div> <ul class="social"> <li><a href="https://www.facebook.com/profile.php?id=100012512077239" class="fa fa-facebook"></a></li> <li><a href="" class="fa fa-twitter"></a></li> <li><a href="" class="fa fa-google-plus"></a></li> <li><a href="www.linkedin.com/in/raj-kumar-web-designer " class="fa fa-linkedin"></a></li> </ul> </div> </div> <div class="col-md-3 col-sm-6"> <div class="our-team"> <div class="pic"> <img src="https://bootsnipp.com/img/avatars/552882bc08538da46b0a8ede8b106e3668c80a42.jpg" > </div> <div class="team-content"> <h3>Raj Kumar</h3> <span class="post"> Web Designer </span> </div> <ul class="social"> <li><a href="https://www.facebook.com/profile.php?id=100012512077239" class="fa fa-facebook"></a></li> <li><a href="" class="fa fa-twitter"></a></li> <li><a href="" class="fa fa-google-plus"></a></li> <li><a href="www.linkedin.com/in/raj-kumar-web-designer " class="fa fa-linkedin"></a></li> </ul> </div> </div> </div> </div> </body>
body{ background-color: antiquewhite; } .our-team{ padding: 30px 0 40px; background-color: white; text-align: center; overflow: hidden; position: relative; border:1px dotted #ccc; } h1{ margin-bottom:15px; } .our-team .pic{ display:inline-block; width: 130px; height: 130px; margin-bottom: 50px; /* background-color: #eb1768; */ position: relative; z-index: 1; } .our-team .pic::before{ content: ""; width: 100%; height: 0; border-radius: 50%; background-color: #eb1768; position: absolute; bottom: 135%; right: 0; left: 0; transform: scale(3); transition: all 0.3s linear 0s; } .our-team:hover .pic::before{ height: 100%; } .our-team .pic::after{ content: ""; width: 100%; height: 99%; border-radius: 50%; background: #ee4268; position: absolute; top: 0; left: 0; z-index: -1; } .our-team .pic img{ width: 100%; height: auto; border-radius: 50%; transform: scale(1); transition: all 0.9s ease 0s; } .our-team:hover .pic img{ box-shadow: 0 0 0 14px #f7f5ec; transform: scale(0.7); } .our-team .team-content{ margin-bottom: 30px; } .our-team .title{ font-size: 22px; font-weight: 700; color: #4e5052; letter-spacing: 1px; text-transform: capitalize; margin-bottom: 5px; } .our-team .post{ display: block; font-size: 15px; color: #4e5052; text-transform: capitalize; } .our-team .social{ width: 100%; padding: 0; margin:0; background: #eb1768; position: absolute; bottom: -100px; left: 0; transition: all 0.5s ease 0s; } .our-team:hover .social{ bottom: 0; } .our-team .social li{ display: inline-block; } .our-team .social li a{ display: block; padding: 10px; font-size: 17px; color: white;transition: all 0.5s ease 0s; } .our-team .social li a:hover{ color: #eb1768; background: #f7f5ec; text-decoration: none; }
Questions / Comments:
Post
Posting Guidelines
Formatting
- Now
×
Close
Donate
BTC: 12JxYMYi6Vt3mx3hcmP3B2oyFiCSF3FhYT
ETH: 0xCD715b2E3549c54A40e6ecAaFeB82138148a6c76