HTML과 CSS만을 사용하여 빛나는 소셜 미디어 아이콘을 만드는 방법.
빛나는 SocialMedia 페이지의 라이브 링크입니다https://ajaysharma12799.github.io/Glowing-SocialMedia-Icon/
LinkedIn에서 나를 팔로우하세요
Github에서 나를 팔로우하세요https://www.github.com/ajaysharma12799/
생성 단계:-
스타일.css.
<!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 Icons</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="facebook"><i class="fab fa-facebook"></i></div>
<div class="instagram"><i class="fab fa-instagram"></i></div>
<div class="twitter"><i class="fab fa-twitter"></i></div>
<div class="linkedin"><i class="fab fa-linkedin"></i></div>
<div class="github"><i class="fab fa-github"></i></div>
<div class="youtube"><i class="fab fa-youtube"></i></div>
</div>
</body>
</html>
:root{
--fbColor: #4267B2;
--instaColor: #cd486b;
--twitterColor: #1DA1F2;
--linkedinColor: #0077b5;
--githubColor: black;
--ytColor: #FF0000;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #CAD5E2;
}
.container {
width: 50vw;
margin: 0 auto;
margin-top: 50vh;
display: flex;
justify-content: space-evenly;
align-content: center;
}
.fab {
border: 1px solid;
padding: 30px;
font-size: 30px;
border-radius: 50%;
cursor: pointer;
}
.fab:hover {
border: none;
animation: grow 1s infinite alternate ease-in-out
}
.facebook:hover {
background-color: var(--fbColor);
color: #fff;
border-radius: 50%;
box-shadow: 0 0 50px var(--fbColor);
}
.instagram:hover {
background-color: var(--instaColor);
border-radius: 50%;
color: #fff;
box-shadow: 0 0 50px var(--instaColor);
}
.twitter:hover {
background-color: var(--twitterColor);
border-radius: 50%;
color: #fff;
box-shadow: 0 0 50px var(--twitterColor);
}
.linkedin:hover {
background-color: var(--linkedinColor);
border-radius: 50%;
color: #fff;
box-shadow: 0 0 50px var(--linkedinColor);
}
.github:hover {
background-color: var(--githubColor);
border-radius: 50%;
color: #fff;
box-shadow: 0 0 50px var(--githubColor);
}
.youtube:hover {
background-color: var(--ytColor);
border-radius: 50%;
color: #fff;
box-shadow: 0 0 50px var(--ytColor);
}
@keyframes grow {
from {
transform: scale(1);
font-size: 30px;
}
to {
transform: scale(1.5);
font-size: 50px;
}
}
@media (max-width: 768px) {
.container {
margin: 0 auto;
display: grid;
flex-direction: column;
justify-content: center;
align-content: center;
margin-top: 5%;
margin-bottom: 5%;
}
.fab {
border: 1px solid;
padding: 30px;
font-size: 30px;
border-radius: 50%;
cursor: pointer;
}
.fab:hover {
border: none;
animation: grow 1s infinite alternate ease-in-out
}
.facebook, .instagram, .twitter, .linkedin, .github, .youtube {
margin-top: 20%;
}
}
Reference
이 문제에 관하여(HTML과 CSS만을 사용하여 빛나는 소셜 미디어 아이콘을 만드는 방법.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/ajaysharma12799/how-to-make-glowing-social-media-icon-using-html-and-css-only-1i5텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)