키프레임실전퍼블리싱3 CSS code error check!
240
종호종호
작성한 질문수 1
1
좋은 강의 감사드립니다. 키프레임 실전 퍼블리싱 3편 CSS에서 circle rotation 이 잘 안되서 코드를 올립니다.어디가 잘못됬는지 한번 봐 주시면 합니다. 감사합니다.
<!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>더블보더 애니메이셩 만들기</title>
<link rel="stylesheet" href="keyframe_ani.css">
</head>
<body>
<div class="square">
<span></span>
<span></span>
<span></span>
</div>
</body>
</html>
@import url('https://fonts.googleapis.com/css? family=Raleway&display=swap');
body{
font-family: 'Raleway', sans-serif;
line-height: 1.5rem;
margin: 0;
font-weight: 300;
background-color: #333;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
a {
text-decoration: none;
}
.square {
width: 400px;
height: 400px;
position: relative;
}
.square span {
position: absolute;
width: 100%;
height: 100%;
border: 1px solid #fff;
border-radius:40% 60% 65% 30% / 40% 60% 68% 35%;
transition:0.5s;
}
.square:hover span {
background-color: crimson;
border: none;
}
.square span:nth-child(1) {
animation: cicle 5s linear infinite;
}
.square span:nth-child(2) {
animation: cicle 4s linear infinite;
animation-direction: reverse ;
}
.square span:nth-child(3) {
animation: cicle 8s linear infinite;
}
.square:hover span:nth-child(1){
opacity: 0.3;
}
.square:hover span:nth-child(2){
opacity: 0.6;
}
.square:hover span:nth-child(3){
opacity: 0.8;
}@keyframes circle {
0% {
transform: rotate(0);
}
100% {
transform: rotate(360deg);
}
}
답변 2
class 값 한 번에 부여하는법
2
95
1
@media에서의 flex-direction: column으로 세로배치 관련 질문드립니다.
1
79
1
div#css-checker-widget의 해결방
1
71
2
input의 포커스되었을때 검정선이 사라지지 않아요
0
95
2
강의듣는법
1
86
1
아코디언 만들기 100%이하의 화면으로 보았을때
1
75
2
input checked 질문합니다.
0
81
1
Bracket Pair Colorizer - 비주얼 스튜디오
1
152
2
Part 1 영상 안나옵니다
1
97
1
제이쿼리 작동이 안됩니다
1
212
3
강의 내용 질문있습니다.
1
128
2
일정 부분만 주석하는 방법
1
223
2
폰트어썸
1
144
2
인접선택자에 대한 질문드립니다!
1
135
2
delay 적용 안됨
1
137
1
rotateY(360deg)가 적용이 안됩니다!
1
190
2
세로이동할때 height값
1
142
2
폰트어썸이 안되요..
1
505
2
화면 정중앙에 오게끔 할수있나요?
1
175
1
어코디언 네비게이션 중
1
127
1
라이브서버 문제
1
241
2
넷플릭스 어코디언 예제 질문
1
107
1
이번 강의에선 display flex가 무조건 적으로 필요한건가요 ?
1
163
1
active 관련 질문
1
150
2





