일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- JS preventDefault
- JS form action
- JS null undefined
- JS 연산
- JS setInterval
- CSS속성정리
- JS 기초
- git 협업셋팅
- JS prompt
- JS clearInterval
- CSS기초
- JS appendChild
- JS setTimeout
- JS classList
- JS append
- JS form
- JS 타이머기능
- JS 화살표함수
- JS 삼항연산
- JS typeof연산자
- HTML기초
- JS 데이터타입
- JS redirection
- JS localStorage
- JS 함수
- JS value속성
- JS 스코프
- js 변수
- JS 형변환
- JS 숫자
목록2024/04/04 (2)
공부기록용
🔴무한슬라이드 구현하기 무한으로 슬라이드되도록 구현하고자 하는데 처음의 앞과 마지막의 뒤로 슬라이드가 더이상 이어지지 않는다. 이런 형태를 만들어주기위해 요소를 복제해 앞뒤로 넣어주도록 한다. body { margin: 0; } ul, li { margin: 0; padding: 0; list-style: none; } img { width: 400px; } button { padding: 0; } /* */ body { position: relative; height: 100vh; } .contanier { width: 1240px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } .slide { border: 5..
body { margin: 0; } ul, li { margin: 0; padding: 0; list-style: none; } img { width: 400px; } button { padding: 0; } /* */ body { position: relative; height: 100vh; } .contanier { width: 1240px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } .slide { border: 5px solid #000; width: 100%; height: 250px; /* overflow: hidden; */ position: relative; } ul { border: 1px so..