"Untitled"
Bootstrap 4.1.1 Snippet by divyalahad

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<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 ---------->
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet">
<div class="row">
<!-- sh menu -->
<div class="sh-menu">
<!-- head -->
<div class="sh-head">
<!-- Button -->
<a href="#" class="bg-lblue">Menu</a>
</div>
<!-- content -->
<div class="sh-content bg-lblue">
<div class="container-fluid">
<div class="row">
<div class="col-md-2 col-sm-2 col-xs-4">
<!-- item -->
<div class="sh-item">
<!-- Image -->
<a href="#"><i class="fa fa-paint-brush fa-4x"></i></a>
<!-- Heading -->
<h6><a href="#">Brush</a></h6>
</div>
</div>
<div class="col-md-2 col-sm-2 col-xs-4">
<!-- UI iteme -->
<div class="sh-item">
<!-- Image -->
<a href="#"><i class="fa fa-weixin fa-4x"></i></a>
<!-- Heading -->
<h6><a href="#">Chat</a></h6>
</div>
</div>
<div class="col-md-2 col-sm-2 col-xs-4">
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
@import url('http://fonts.googleapis.com/css?family=Open+Sans:300,400italic,400,600');
/* General */
.sh-menu .fa{
margin-top:15px;
}
.sh-content{
margin-top:-10px;
}
.sh-item:hover{
opacity: 0.7;
cursor: pointer;
border-radius: 0px;
-webkit-transform: scale(1.2, 1.2);
-webkit-transition-timing-function: ease-out;
-moz-transform: scale(1.2, 1.2);
-moz-transition-timing-function: ease-out;
-ms-transform: scale(1.20, 1.20);
-ms-transition-timing-function: ease-out;
-webkit-transition-duration: 500ms;
-moz-transition-duration: 500ms;
-ms-transition-duration: 500ms;
}
.sh-item:hover .fa{
color:#39bbdb;
}
body {
color: #666666;
font-size: 13px;
line-height: 23px;
background: #fff;
border-top:3px solid #32c8de;
font-family: 'Open Sans', sans-serif;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//Slideup and slidedown
$(document).ready(function(){
$(".sh-head a").click(function(){
/* Variable */
var content = $(".sh-content");
if(content.hasClass("open")){
content.removeClass("open");
content.slideUp(300);
}
else{
content.slideDown(300);
content.addClass("open");
}
});
});
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: