CSS Social Media Icons Water Effect.Today in this blog, we gonna learn about CSS Social Media Icons Water Effect.
CSS Social Media Icons Water Effect
Hi Friends!
Today in this blog, we gonna learn about CSS Social Media Icons Water Effect. Social Media Icons Water 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 Social Media Icons Water Effect is one of my favorite Social Media Icons Effects. In the previous blog, we will learn about CSS Glass Morphism Button Effect For Beginners if you're a beginner I will recommend learning that button effect first. If you learn that and this blog will help you to learn about Social Media Icons Water 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 social media icon water effect</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="instagram">
<i class="fab fa-instagram"></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;
border-radius: 50%;
font-size: 50px;
box-shadow: 1px 1px 60px black;
background-color: rgba(255, 255, 255, 0.1);
cursor: pointer;
overflow: hidden;
}
div::after{
content: '';
display: block;
position: absolute;
height: 110px;
width: 110px;
border-radius: 35%;
top: 90%;
z-index: -1;
}
.twitter::after{
background-color: dodgerblue;
box-shadow: 1px 1px 60px dodgerblue,
1px 1px 60px dodgerblue;
}
.whatsapp::after{
background-color: limegreen;
box-shadow: 1px 1px 60px limegreen,
1px 1px 60px limegreen;
}
.instagram::after{
background-color: orange;
box-shadow: 1px 1px 60px orange,
1px 1px 60px orange;
}
div:hover::after{
animation: anime 2s linear forwards;
}
@keyframes anime{
100%{
top: 0;
transform: rotate(360deg);
}
}
]
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 and this will encourage you to learn this Social Media Icons Water Effect better This video is also helpful to learn faster. Glowing Social Media Icons Water Effects are important CSS Effects. I hope this tutorial will be helpful for learning Social Media Icons Water Effect for beginners. I will give you Source Code and you can download it.
COMMENTS