Fresh content 5
<button class="download-button">
<a href="https://gplinks.co/yaVY" target="_blank">
<i class="fas fa-cloud-download-alt"></i>
<span>Download Now</span>
</a>
</button>
<style>
.download-button {
background-color: orange;
color: #fff;
border: none;
border-radius: 50px;
padding: 12px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 18px;
font-weight: bold;
cursor: pointer;
position: relative;
overflow: hidden;
}
.download-button:hover {
background-color: #ff7f00;
}
.download-button span {
display: flex;
justify-content: center;
align-items: center;
position: relative;
z-index: 2;
height: 100%;
}
.download-button:before {
content: "";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) rotate(45deg);
width: 0;
height: 0;
background-color: #fff;
opacity: 0.1;
z-index: 1;
border-radius: 50%;
}
.download-button:hover:before {
width: 200%;
height: 200%;
}
.download-button i {
margin-right: 8px;
transition: transform 0.3s ease-in-out;
}
.download-button:hover i {
transform: translateX(50px);
}
</style>
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
No comments
Note: Only a member of this blog may post a comment.