이 문서의 예에서는 jquery가 지정된 요소를 플래시로 만드는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.
이 jQuery 코드는 지정된 요소의 색상을 지속적으로 변경하고 호출하는 기능도 매우 간단합니다.
jQuery.fn.flash = function( color, duration ) { var current = this.css( 'color' ); this.animate( { color: 'rgb(' + color + ')' }, duration / 2 ); this.animate( { color: current }, duration / 2 ); } // http://www.jb51.net Then use the above function as: $( '#importantElement' ).flash( '255,0,0', 1000 );
이 기사가 모든 사람의 jQuery 프로그래밍에 도움이 되기를 바랍니다.