CSS Animated Social Media Icons.Today in this blog , we gonna learn about CSS Animated Social Media Icons Effect.
CSS Animated Social Media Icons
Hi Friends!
Today in this blog, we gonna learn about CSS Animated Social Media Icons Effect. Animated Social Media Icons Effects are one of the best attractive and clickable parts of the website. I already uploaded some Social Media Icons effects if you're a beginner let's go and learn it.
This Animated Social Media Icons Effect is nice to see on websites. In the previous blog, we will learn about CSS Glowing Login Form Design if you're a beginner I will recommend learning Login Form Design first. If you learn that and this blog will help you to learn about Animated Social Media Icons Effect. In this blog, I will give my video tutorial and source codes to download. if you have any doubts ask me in the comment section.
HTML file
[
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>css animated social media icons</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<div class="twitter">
<i class="fab fa-twitter"></i>
</div>
<div class="whatsapp">
<i class="fab fa-whatsapp"></i>
</div>
<div class="youtube">
<i class="fab fa-youtube"></i>
</div>
</body>
</html>
]
You can copy this HTML file. and paste it into your HTML file. Now you will learn it clearly. and don't forget to save the file with an extension. HTML. This extension is more important for creating a website page.
CSS file
[
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
display: flex;
justify-content: space-around;
align-items: center;
height: 100vh;
width: 100%;
background-color: #262626FF;
}
div{
display: flex;
justify-content: center;
align-items: center;
position: relative;
height: 100px;
width: 100px;
transition: 1s;
border-radius: 50%;
cursor: pointer;
}
i{
font-size: 50px;
}
.twitter{
background-color: dodgerblue;
box-shadow: 1px 1px 60px dodgerblue;
}
.whatsapp{
background-color: lime;
box-shadow: 1px 1px 60px lime;
}
.youtube{
background-color: #F7023F7A;
box-shadow: 1px 1px 60px #F7023F7A;
}
div::after{
content: '';
display: block;
position: absolute;
height: 50px;
width: 150px;
left: 0;
font-size: 30px;
font-weight: bold;
font-family: cursive;
transition: 1s;
opacity: 0;
z-index: -1;
}
.twitter::after{
content: 'Twitter';
color: dodgerblue;
}
.whatsapp::after{
content: 'Whatsapp';
color: lime;
}
.youtube::after{
content: 'Youtube';
color: #F7023F7A;
}
.twitter:hover{
background-color: transparent;
color: dodgerblue;
box-shadow: none;
}
.whatsapp:hover{
background-color: transparent;
color: lime;
box-shadow: none;
}
.youtube:hover{
background-color: transparent;
color: #F7023F7A;
box-shadow: none;
}
div:hover::after{
opacity: 1;
transform: translateX(100px);
}
]
Secondly, you can copy this CSS file. and paste it into your CSS file. and remember the file extension called. CSS. This will help you to design your webpage. If you want more clarity on this topic you can watch my video tutorial and If you have any doubts ask me in the comment section.
Video Tutorial
Watch this video fully and learn the all Social Media Icons effects to develop your skills. repeat the code for your practice this will help you to learn this Animated Social Media Icons Effect more effectively and This video is also helpful to learn faster. colourful Animated Social Media Icons Effects are an important part of websites. I hope this tutorial will be helpful for learning Social Media Icons effect. I will give you Source Code and you can download it.
COMMENTS