Social Links Rotate
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Social Links</title> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> | |
</head> | |
<body> | |
<div class="middle"> | |
<a class="btn" href="#"><i class="fa fa-facebook" aria-hidden="true"></i></a> | |
<a class="btn" href="#"><i class="fa fa-facebook" aria-hidden="true"></i></a> | |
<a class="btn" href="#"><i class="fa fa-facebook" aria-hidden="true"></i></a> | |
<a class="btn" href="#"><i class="fa fa-facebook" aria-hidden="true"></i></a> | |
</div> | |
<style type="text/css"> | |
body{padding: 0px;margin: 0px;} | |
.middle{ | |
position: absolute; | |
top: 50%; | |
transform: translateY(-50%); | |
width: 100%; | |
text-align: center; | |
} | |
.btn{ | |
display: inline-block; | |
width: 90px; | |
height: 90px; | |
background-color: #f1f1f1; | |
margin: 10px; | |
border-radius: 30%; | |
box-shadow: 0px 5px 15px -5px #000; | |
color: #3498db; | |
overflow: hidden; | |
position: relative; | |
} | |
.btn i{line-height: 90px; font-size: 26px; transition: 0.2s linear;} | |
.btn:hover i{transform: scale(1.3); color: #f1f1f1;} | |
.btn::before{content: ''; position: absolute; width: 120%; height: 120%; background: #3498db; transform: rotate(45deg); left: -110px; top: 90%;} | |
.btn:hover::before{animation: aaa 0.7s 1; top: -10%; left: -10%;} | |
@keyframes aaa{ | |
0%{ | |
left: -110%; | |
top: 90%; | |
} | |
50%{ | |
left: 10%; | |
top: -30%; | |
} | |
100%{ | |
left: -10%; | |
top: -10%; | |
} | |
} | |
</style> | |
</body> | |
</html> |
Comments
Post a Comment