"css button hover effect"
Bootstrap 3.0.0 Snippet by Divscodebd

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="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.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 ---------->
<html>
<head>
<title>css Animation Button</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="comtainer">
<div class="button">
<a href="">Home</a>
<a href="">About</a>
<a href="">Contact</a>
<a href="">Service</a>
</div>
</div>
<di class="clearfix"></div>
<div class="container">
<div class="row" style="margin-top:30px;">
<div class="col-md-4">
<div class="embed-video">
<iframe src="https://www.youtube.com/embed/mc3aTxClUAk" frameborder="0" allowfullscreen></iframe>
</div>
</div>
<div class="col-md-4">
<div class="embed-video">
<iframe src="https://www.youtube.com/embed/R0g_9g9vb2A" frameborder="0" allowfullscreen></iframe>
</div>
</div>
<div class="col-md-4">
<div class="embed-video">
<iframe src="https://www.youtube.com/embed/R0g_9g9vb2A" frameborder="0" allowfullscreen></iframe>
</div>
</div>
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
body{
margin: 0px;
padding: 0px;
font-family: sans-serif;
background: #fff;
color: #fff;
}
.comtainer{
width: 90%;
margin: auto;
background: #f5f5f5;
height: auto;
}
.button{
text-align: center;
line-height: 100px;
height: 100px;
width: 600px;
border-radius: 140px;
background: #222;
}
.button a{
padding: 10px 25px;
color: #fff;
background: red;
text-decoration: none;
transition: all .5s ease-in;
}
.button a:nth-child(1){
background: blue;
}
.button a:nth-child(2){
background: green;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: