본문 바로가기

전체 글

(137)
js 2024. 6. 11. 11:33
[script]getElementById가 null이 뜰 때 window.onload = function() { // 작성할 스크립트}윈도우.온로드 안에 작성
css 2024. 4. 23. 13:47
[css]rem과 em의 기준 rem - html 자체의 디폴트 font-size ( =16px ) em - 적용하고자 하는 태그에 적용되어 있는 font-size
css 2024. 3. 18. 10:33
[css]텍스트 두줄 처리 / 두줄, 두 줄, 여러줄, 여러 줄 .text{display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;}
기타 2024. 2. 26. 13:57
[vscode]파일 비교하기 F1 > compare 검색 > file: Compare Active With 클릭
css 2024. 2. 14. 10:44
[css]rgb쓰는법 span{color: rgb(0, 0, 0)} span{color: rgba(0, 0, 0, .5)} span{color: rgb(0, 0, 0 / 50%)}
css 2024. 2. 2. 09:56
[css]grid 가로 폭 고정시키기 (gird width 고정) 텍스트로 인해 grid-items가 template-columns를 무시할 경우, items에 max-width:100%; width:100% 추가해주면 됨 ** 오버플히든이 답일수도 (224107 추가)
js 2024. 1. 4. 16:56
[js]콜백 함수 callback ㅁ2 출력시키고 ㅁ 출력시키기 function a(){ console.log("ㅁ") } function b(){ console.log("ㅁ2") return a(); } 혹은 밑에도 가능 function a(){ console.log("ㅁ") } function b(callback){ console.log("ㅁ2") callback() } b(a) ** 추가로 다른 함수가 더 필요할때 function a(callback){ // 실행될 함수 어쩌고 callback() } $(function(){ setTimeout(() => { a(function(){ $("div").each(function(){ $(this).text($(this).index()) }) }) }, 1000); }) 로드 완료되고 1..
js 2023. 12. 19. 17:37
[js]타임피커 라이브러리 time picker https://plugins.slyweb.ch/jquery-clock-timepicker/

top