본문 바로가기

전체 글38

svg animation - svg로 선 그어지는 효과 완성 HTML 삽입 미리보기할 수 없는 소스 소스코드 알아야하는 css 속성 stroke-dasharray stroke-dashoffset animation 2023. 4. 7.
[jquery]rwdImageMaps.js-반응형 이미지 맵 플러그인 사이트 https://github.com/stowball/jQuery-rwdImageMaps GitHub - stowball/jQuery-rwdImageMaps: Responsive Image Maps jQuery Plugin Responsive Image Maps jQuery Plugin. Contribute to stowball/jQuery-rwdImageMaps development by creating an account on GitHub. github.com 사용법 $('img[usemap]').rwdImageMaps(); 파일 2023. 4. 5.
[jQuery]maphilight.js - map태그 마우스오버할 때 강조 효과 나타내는 플러그인 공식사이트 & 문서 https://projects.davidlynch.org/maphilight/docs/#maphilight jQuery maphilight documentation maphilight applies to images with a 'usemap' attribute, and outlines the areas defined in their map on mouseover. This would hilight every image with a map on the page: $('img[usemap]').maphilight() $.maphilight.defaults The defaults for all uses of maphil projects.davidlynch.org 데모 https://pro.. 2023. 4. 5.
개발자 영타자 타이핑 연습하는 사이트 https://typing.io/lessons Typing Lessons | typing.io ScalaScala539 linesStatic, Functional, Object-Oriented PL — ParArray.scala typing.io 2022. 12. 26.
[JS]chart.js로 간단한 차트 만들기 chart.js 으로 간단한 차트 만들기 데이터 외부 json 파일을 불러오기 함 ※ 통계 출처 : 통계청 - 전체 육아휴직자 수 { "items": [ { "year": 2016, "total": 140403, "father": 11965, "mother": 128438 }, { "year": 2017, "total": 142038, "father": 18160, "mother": 123878 }, { "year": 2018, "total": 153741, "father": 25062, "mother": 128679 }, { "year": 2019, "total": 163256, "father": 32051, "mother": 131205 }, { "year": 2020, "total": 171959,.. 2022. 12. 26.
[CSS] hover 효과 See the Pen Untitled by Na Jina (@njina) on CodePen. 2022. 12. 19.
[HTML&CSS]동영상 반응형으로 삽입하기 HTML CSS .iframe_wrap{ position: relative; height: 0; overflow: hidden; max-width: 100%; padding-bottom: 56.25%; /* 56.25% => 16:9 비율의 영상 75% => 4:3 비율의 영상 */ } .iframe_wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } 2022. 9. 13.
[CSS] reset.css html,body,div,span,applet,object,iframe, h1,h2,h3,h4,h5,h6,p,blockquote,pre, a,abbr,acronym,address,big,cite,code,del,dfn,em, img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article, aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,.. 2022. 9. 13.
[HTML&CSS] 레이아웃 마크업과 스타일을 모아둔 사이트 CSS LAYOUT https://csslayout.io/ A collection of popular layouts and patterns made with CSS - CSS Layout A collection of popular layouts and patterns made with CSS csslayout.io 보편적으로 많이 사용되는 레이아웃의 HTML 구조와 CSS를 모아 제공하는 사이트입니다. 2022. 9. 8.
[JS]chart.js - 차트만드는 자바스크립트 라이브러리 공식 사이트 Chart.js Simple yet flexible JavaScript charting library for the modern web www.chartjs.org 예제 간단한 차트 만들기 2022. 7. 12.