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
"Service Pannel with Hover Effect"
Bootstrap 3.3.0 Snippet by
creativealex
3.3.0
Preview
HTML
CSS
View Full Screen
Forked from
Fork
Fork this
Parent
1.0K
 
0 Fav
Post to Facebook
Tweet this
<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 ----------> <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css"> <div class="wrapper"> <div class="panel animated slideInDown"> <img src="http://bootsnipp.com/img/avatars/a2f8472191983eb9d11563095cdd5e070c719896.jpg" alt="" /> <h3>Design Services</h3> <p>Sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p> <div class="slide"> <h4>Services</h4> <ul> <li><i class="fa fa-check"></i> Project Strategy and Planning </li> <li><i class="fa fa-check"></i> Content Management Systems</li> <li><i class="fa fa-check"></i> Email Marketing</li> <li><i class="fa fa-check"></i> Mobile App Development</li> <li><i class="fa fa-check"></i> Usability Testing</li> <li><i class="fa fa-check"></i> Responsive Development</li> <li><i class="fa fa-check"></i> Scheduled Maintenance</li> <li><i class="fa fa-check"></i> eCommerce Solutions</li> </ul> </div> </div> <div class="panel animated slideInDown"> <img src="http://bootsnipp.com/img/avatars/a2f8472191983eb9d11563095cdd5e070c719896.jpg" alt="" /> <h3>Development Services</h3> <p>Sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p> <div class="slide"> <h4>Services</h4> <ul> <li><i class="fa fa-check"></i> Project Strategy and Planning </li> <li><i class="fa fa-check"></i> Content Management Systems</li> <li><i class="fa fa-check"></i> Email Marketing</li> <li><i class="fa fa-check"></i> Mobile App Development</li> <li><i class="fa fa-check"></i> Usability Testing</li> <li><i class="fa fa-check"></i> Responsive Development</li> <li><i class="fa fa-check"></i> Scheduled Maintenance</li> <li><i class="fa fa-check"></i> eCommerce Solutions</li> </ul> </div> </div> <div class="panel animated slideInDown"> <img src="http://bootsnipp.com/img/avatars/a2f8472191983eb9d11563095cdd5e070c719896.jpg" alt="" /> <h3>SEO Services</h3> <p>Sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p> <div class="slide"> <h4>Services</h4> <ul> <li><i class="fa fa-check"></i> Analytics </li> <li><i class="fa fa-check"></i> Active Search</li> <li><i class="fa fa-check"></i> Code Optimization</li> <li><i class="fa fa-check"></i> Link Building</li> <li><i class="fa fa-check"></i> Mobile Marketing</li> <li><i class="fa fa-check"></i> Landing Pages</li> <li><i class="fa fa-check"></i> Pay Per Click Optimization</li> <li><i class="fa fa-check"></i> Local SEO</li> </ul> </div> </div> </div> <p class="title">Simple Animated Service Panels — Hover each panel to reveal a list of services.</p>
body { margin: 0; padding: 0; font-size: 16px; font-family: 'Open Sans', sans-serif; line-height: 1.5; color: #808080; background: #39cc62; } ul{ list-style:none; padding:0; } .wrapper { margin: 40px auto; width: 930px; height: 500px; } .wrapper::before, .wrapper::after { content: ""; display: table; clear: both; } .wrapper .panel { position: relative; margin: 50px 20px; padding: 0 20px 20px; overflow: hidden; float: left; width: 270px; height: 450px; text-align: center; background: #F1F1F1; border: 1px solid #30bb57; box-sizing: border-box; transition: border 200ms ease; cursor: pointer; } .wrapper .panel img { display: block; margin: 20px auto; text-align: center; } .wrapper .panel h3 { display: block; margin-bottom: 15px; color: #30bb57; font-size: 18px; font-weight: 700; text-align: center; text-shadow: 0 2px 1px #FFF; } .wrapper .panel p { font-size: 14px; text-shadow: 0 1px 1px #FFF; } .wrapper .panel .slide { position: absolute; bottom: -450px; left: 0; z-index: 100; padding: 20px; height: 100%; width: 100%; text-align: left; background: rgba(1, 61, 71, 0.95); box-sizing: border-box; transition: all 300ms 500ms cubic-bezier(0.645, 0.045, 0.355, 1); } .wrapper .panel .slide h4 { margin-bottom: 20px; text-align: left; text-shadow: none; font-size: 18px; font-weight: 600; color: #39cc62; } .wrapper .panel .slide ul li { padding: 5px 5px 5px 8px; line-height: 24px; font-size: 13px; color: #F0F0F0; border-bottom: 1px solid #3e737b; } .wrapper .panel .slide ul li:last-child { border: 0; } .wrapper .panel .slide ul li .fa { padding-right: 5px; color: #39cc62; } .panel:hover { border: 1px solid #30bb57; } .panel:hover .slide { bottom: 0; cursor: pointer; } .animated { animation-duration: 500ms; animation-fill-mode: both; animation-delay: 1s; } @keyframes slideInDown { 0% { -webkit-transform: translateY(-120%); -ms-transform: translateY(-120%); transform: translateY(-120%); visibility: visible; } 100% { -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); } } .slideInDown { -webkit-animation-name: slideInDown; animation-name: slideInDown; } p.title { margin: 0 auto; padding: 0; font-size: 14px; line-height: 16px; font-weight: 400; height: 36px; width: 890px; background: #013d47; border: 1px solid #2ba74e; color: #FFF; text-align: center; border-radius: 5px; }
Questions / Comments:
Post
Posting Guidelines
Formatting
- Now
×
Close
Donate
BTC: 12JxYMYi6Vt3mx3hcmP3B2oyFiCSF3FhYT
ETH: 0xCD715b2E3549c54A40e6ecAaFeB82138148a6c76