본문 바로가기

전체 글38

자바스크립트 유용한 라이브러리 1. 슬라이드 효과 https://kenwheeler.github.io/slick/ slick - the last carousel you'll ever need slick is a responsive carousel jQuery plugin that supports multiple breakpoints, CSS3 transitions, touch events/swiping & much more! kenwheeler.github.io 2.차트 https://www.chartjs.org/docs/latest/getting-started/ Getting Started | Chart.js Getting Started Let's get started with Chart.js! Alternatively, see t.. 2024. 4. 16.
JQuery 공부할 수 있는 사이트 1. https://www.w3schools.com/jquery/default.asp jQuery Tutorial W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more. www.w3schools.com 2. https://www.tcpschool.com/jquery/intro#google_vignette 코딩교육 티씨피스쿨 4차산업혁명, 코딩교육, 소프트웨어교육, 코딩기초, SW코딩, 기초코딩부터 자바 파이썬 .. 2024. 4. 16.
웹호스팅, 서버 1. 깃허브 https://github.com/ GitHub: Let’s build from here GitHub is where over 100 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, track bugs and fea... github.com 1. 웹호스팅 서비스 https://www.dothome.co.kr/ 무료홈페이지 | 무료호스팅 | 닷홈 닷홈은 도메인, 무료호스팅, 무료홈페이지, 웹호스팅, 웹메일, SSL보안인증서, 서버호스팅 등 호스팅 서비스를 제공하고 있습니.. 2024. 4. 16.
배열 배열을 만드는 방법은 3가지 입니다. let arrList = [배열요소1, 배열요소2]; let arrList = Array(배열요소1, 배열요소2); let arrList = new Array(배열요소1, 배열요소2); 보다시피 결과값은 모두 똑같으니 편한 걸 쓰면 됩니다. //배열 리터럴을 이용하는 방법 let arrList1=[-1,0,true,"문자열"]; document.write(arrList1 + " "); //-1,0,true,"문자열" // Array객체의 생성자를 이용하는 방법 let arrList2=Array(-1,0,true,"문자열"); document.write(arrList2 + " "); //-1,0,true,"문자열" // new 연산자를 이용한 Array객체 생성 방법 .. 2024. 4. 15.
별 도장 찍기 1. 사각형 별 HTML 삽입 미리보기할 수 없는 소스 2. 왼쪽 정렬 삼각형 HTML 삽입 미리보기할 수 없는 소스 3 오른쪽 정렬 삼각형 HTML 삽입 미리보기할 수 없는 소스 3. 역삼각형 정렬 HTML 삽입 미리보기할 수 없는 소스 2024. 4. 15.
setInterval 시간 나타내기 1. HTML 삽입 미리보기할 수 없는 소스 2024. 4. 15.