728x90
SMALL

jQuery 29

slick slider 옵션 한글 정리

$('.slider_area').slick({ rows: 1, //이미지를 몇 줄로 나타낼건지 (int) dots: false, //네비게이션버튼 (boolean) -default:false appendDots: $('#dots'), //네비게이션버튼 변경 (선택자 혹은 $(element)) dotsClass: 'custom-dots', //네비게이션버튼 클래스 변경 infinite: true, //무한반복 (boolean) -default:true slidesToShow: 4, //한번에 보여줄 사진의 갯수(int) slidesToScroll: 4, //한번에 넘길 사진의 갯수(int) slidesPerRow: 1, //보여질 행의 수 (한 줄, 두 줄 ... ) autoplay: true, //자동시..

jQuery 2023.06.20

[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

[jQuery] jQuery/Method/.click() - Method to do a specific operation when clicking on selected element

#jquery #click() .click() .click() is a property that allows you to perform certain actions when you click on the selected element. grammar .click( handler ) For example, if you want a function to run when a button element is clicked, do the following: $( 'button' ).click( function() { // function } ); example Click on a paragraph to see its borders. Click again to remove the border. Lorem ipsum..

jQuery 2022.09.04

[jQuery] jQuery/Method/.before() - method to add a new element before the selected element or move the element to another location

#jquery #.before() #method to add a new element before the selected element or move the element to another location .before() .before() can add a new element before the selected element or move an element in another place. grammar .before( content [, content ] ) for example $( 'h1' ).before( 'Hello' ); adds a p element with Hello as its content before the h1 element. $( 'h1.a' ).before( $( 'p.b'..

jQuery 2022.09.02
728x90
LIST