250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- iPhone
- 풀스택
- IOS
- keyframes
- javascript
- 프론트엔드
- Animation
- 비전공 개발자
- 자바스크립트
- html5
- HTML
- 백엔드
- image
- xcode
- css3
- SWIFT
- CSS
- button
- front-end
- effect
- 비전공자
- hover
- 개발자
- php
- 애니메이션
- MAC
- ipad
- react
- iOS 개발자
- jQuery
Archives
- Today
- Total
비전공자 개발일기
WhatsApp LOGO 본문
728x90
SMALL
<!DOCTYPE html>
<html lang="ko">
<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>WhatsApp</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css">
</head>
<body>
<div class="white">
<div>
<i class="fas fa-phone"></i>
</div>
</div>
</body>
</html>
body{
margin: 0;
padding: 0;
background: lightblue;
}
div{
width: 70px;
height: 70px;
border-radius: 35px;
background: #3AC371;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
}
.white{
width: 80px;
height: 80px;
border-radius: 40px;
background-color: #fff;
box-shadow: 2px 2px 3px 2px rgba(0,0,0,.3);
}
.white::before{
content: "";
top: 65px;
left: -15px;
border-width: 20px;
border-style: solid;
border-color: transparent #fff transparent transparent;
position: absolute;
transform: rotate(-50deg) rotateX(-55deg);
}
.white::after{
content: "";
top: 63px;
left: -4px;
border-width: 15px;
border-style: solid;
border-color: transparent #3AC371 transparent transparent;
position: absolute;
transform: rotate(-51deg) rotateX(-50deg);
}
.fas{
left: 17px;
top: 18px;
position: absolute;
font-size: 35px;
color: #fff;
transform: rotate(90deg);
}
728x90
LIST
'HTML _CSS' 카테고리의 다른 글
Firework (0) | 2022.08.01 |
---|---|
Neumorphism Custom Range Slider (0) | 2022.07.30 |
Bubble Animation (0) | 2022.07.28 |
Magic LIne Icon Hover Effects (0) | 2022.07.26 |
Ambient Light Effects (0) | 2022.07.25 |