728x90
SMALL

전체 글 128

JavaScript 카운트 다운 숫자증가 애니메이션

html D-DAY - 일 : - 시간 : - 분 : - 초 D-DAY -일 -시간 -분 -초 클래스 명으로 CSS 디자인을 적용시켜주었다. 원래는 시간을 나타내는 숫자에는 같은 ID를 사용했다가 구조상의 문제로 다 각각 만들어주었다. 두개를 한페이지에 한번에 사용하지 않는다면 id를 공통으로 줘도 작동한다.(같이 사용한다하면 js에서 querySelectorAll을 사용하면 되긴한다.) 시작시에는 -에서 시작 되도록 만들었다. CSS .timer-background { width: 100%; height: 124px; /* 백그라운드 색 코드를 아래 background-color에 넣어주시면 됩니다 */ background-color: #399bfe; text-align: center; font-siz..

Javascript 2023.06.13

HTML CSS Javascript 주석 달기 및 단축키

CSS 주석 단축키 Ctrl + / : 한줄 주석 처리 / 해제 Ctrl + K + C : 주석 지정 Ctrl + K + U : 주석 해제 HTML HTML에서는 감싸면 주석 처리가 됩니다. 안의 내용이 여러 줄이어도 됩니다. CSS CSS에서는 /*와 */ 사이의 내용이 주석 처리됩니다. 안의 내용이 여러 줄이어도 됩니다. /* Comment */ JavaScript 자바스크립트에서는 방법이 두 가지가 있습니다. //를 넣으면 // 뒤부터 그 줄의 끝까지가 주석이 됩니다. // Comment 여러 줄을 주석 처리하고 싶다면 /*와 */로 감쌉니다. /* Comment Comment */

CSS 2023.06.12

[jQuery] jQuery/Method/.detach() - Method to remove selected element from document and save

#jquery #detach() .detach() .detach() removes the selected element from the document. Same as .remove() in that it removes, but .detach() saves the removed elements for reuse. grammar .detach( [selector ] ) for example var jb = $( 'h1' ).detach(); will remove the h1 element from the document and store it in the variable jb. example Clicking the Cut button will cut the Dolor, and clicking the Pas..

jQuery 2022.09.08

[jQuery] jQuery/Method/.delay() - Method to pause (defer) a running function for a given amount of time

#jQuery #delay() .delay() .delay() causes a running function to pause (defer) for a given amount of time. grammar .delay( duration [, queueName ] ) duration contains the time to stop. The unit when deciding by number is 1/1000 second, and you can decide by slow or fast. Slow corresponds to 600 and Fast corresponds to 200. example When the button is clicked, the paragraph disappears upwards and c..

jQuery 2022.09.07

[jQuery] jQuery/Method/.css() - Method to get css property value of selected element or add style property

#jQuery #css .css() Get the css attribute value of the selected element with .css() or add the style attribute. grammar 1 .css( propertyName ) Add a style property. for example $( "h1" ).css( "color", "green" ); adds a style attribute to the h1 element and replaces the text color with green. ... example 1 Prints the value of the color attribute of the h1 element. Lorem ipsum dolor. example 2 Set..

jQuery 2022.09.06
728x90
LIST