Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sangmin802/javascript
https://github.com/sangmin802/javascript
Last synced: 16 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/sangmin802/javascript
- Owner: sangmin802
- Created: 2019-10-11T10:03:49.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T16:46:29.000Z (about 2 years ago)
- Last Synced: 2024-05-28T21:24:05.344Z (8 months ago)
- Language: HTML
- Size: 7.57 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 34
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## 연습장입니다.
## 2020-02-19
position absolute를 갖고있는 부모의 높이를 구하지 못해, 내용이 보이지 않을 때!
padding은 상위컨텐츠의 width를 기준으로 설정되기 때문에, padding-bottom : ?%를 통해 다른방법으로 높이값을 줄 수 있다.
## 2020-03-24
li처럼 하나의 부모태그 안 여러 태그들에게 각기 다른 이벤트를 주고 싶을때, 버블링을 활용하여, 각 태그의 data값을 주고 dataset조회를 통해 이벤트를 부여할 수 있다.
## 2020-05-27
프론트엔드 알아두면 좋은정보 링크 https://github.com/baeharam/Must-Know-About-Frontend
## 2020-06-09
간혹, !나 !!로 짜여진 코드를 볼 수 있는다.
1. ! : 반대의 값.
2. !! : undefined나 null, 0, 1 등의 값들을 강제로 true 또는 false로 정의해준다.## 2020-06-22
while(true) : 무한반복을 의미하며, 내부에서 if(조건) break;를 통해 중단할 수 있다.
for(??)와 동일한 기능