Glowing Social Media Icons using only HTML & CSS | CodingWang

Hello viewers, in this blog you’ll learn to produce Social Media Icons with CSS Glowing Effect today. Previously i've provided Social Media Icons with Hover Animation using only HTML and CSS, now it’s time and power to create a Social Media Button with shining result.

Glowing Social Media Icons using only HTML & CSS
Glowing Social Media Icons using only HTML & CSS

The Social Media Widget is a simple widget enabling users to put their internet sites and connections profile URLs and other membership rate options to show an icon to that social networking web site and more that open up in a web browser window this is always individual.

At first, these icons come in the stage this is certainly initial there is no radiance result. Nevertheless when you hover about it, the specific icon this is certainly hovered to glow. Within the picture, there is certainly 2 Social Media Widget List with the exact same icons but which glow this is certainly different. In the widget that is first you will find gold color glowing impacts and in the second widget, you can find standard logo shade shining effects.

If you’re sensation difficulty understanding what I was saying. You can view a video clip that is complete the program (shining Social Media Icons Widget).


Video Tutorial of CSS Glowing Social Media Icons on Hover

I really hope you prefer these glowing effects and understanding the basic codes behind the creating of this Social Media Icons that is glowing Widget. It is an result this is certainly predicated on just HTML & CSS while you have seen within the video. And, in my opinion a novice who has a knowledge that is basic of & CSS can also produce this kind of radiance result.

If you want the program (Glowing Social Media Icons Widget) and would like to get supply codes. You can easily obtain the resource rules of this system. To get the origin rules you merely need certainly to scroll down.


Glowing Social Media Icons HTML that is using [Source Codes]

To produce the program (Glowing Social Media Icons Widget). Initially, you will need to create two Files one HTML File and a differnt one is CSS File. After generating these files simply paste the rules which are after your file. Initially

create an HTML file using the true name of index.html and paste the offered rules in your HTML file. Remember, you’ve to produce a file

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Glowing Social Media | CodingWang</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">

<div class="wrapper">
<ul>
<li class="facebook">
<i class="fa fa-facebook" aria-hidden="true"></i>
<div class="slider">
<p>facebook</p>
</div>
</li>

<li class="twitter">
<i class="fa fa-twitter" aria-hidden="true"></i>
<div class="slider">
<p>twitter</p>
</div>
</li>

<li class="instagram">
<i class="fa fa-instagram" aria-hidden="true"></i>
<div class="slider">
<p>instagram</p>
</div>
</li>

<li class="google">
<i class="fa fa-google" aria-hidden="true"></i>
<div class="slider">
<p>google</p>
</div>
</li>

<li class="whatsapp">
<i class="fa fa-whatsapp" aria-hidden="true"></i>
<div class="slider">
<p>whatsapp</p>
</div>
</li>
</ul>
</div>

</body>
</html>

Second, create a CSS file aided by the true title of style.css and paste the given rules in your CSS file. Remember, you’ve to make a file with .css expansion.

* {
margin: 0;
padding: 0;
}

body {
background: #d90000;
}

.wrapper {
position: absolute;
top: 50%;
left: 45%;
transform: translate(-50%, -50%);
}

ul {
list-style: none;
}

ul li {
width: 50px;
height: 50px;
position: relative;
background: #e59500;
margin: 10px 0;
cursor: pointer;
border-radius: 3px;
box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

ul li .fa {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 20px;
color: #fff;
}

ul li.facebook{
background: #3b5998;
}

ul li.twitter{
background: #00aced;
}

ul li.instagram{
background: #bc2a8d;
}

ul li.google{
background: #dd4b39;
}

ul li.whatsapp{
background: #4dc247;
}

ul li.facebook div.slider{
background: #627aac;
}

ul li.twitter div.slider{
background: #7fd5f6;
}

ul li.instagram div.slider{
background: #dd94c6;
}

ul li.google div.slider{
background: #eea59c;
}

ul li.whatsapp div.slider{
background: #82d47e;
}

.slider {
content: "";
position: absolute;
top: 0;
left: 51px;
width: 0px;
height: 50px;
background: #eebb5c;
border-radius: 3px;
transition: all 0.5s 0.3s ease;
}

.slider p {
font-family: arial;
text-transform: uppercase;
font-size: 16px;
font-weight: 900;
color: #fff;
text-align: center;
line-height: 50px;
opacity: 0;
transition: all 0.6s ease;
}

ul li:hover .slider {
width: 180px;
transition: all 0.5s ease;
}

ul li:hover .slider p {
opacity: 1;
transition: all 1s 0.2s ease;
}

That’s all, so now you’ve successfully created a Social this is certainly radiant Media Widget only using HTML & CSS. Then please comment down or contact us through the contact web page when your code does not work or you’ve experienced any error/problem.

Post a Comment

Previous Post Next Post

Follow Me Google News