[ jquery ] 검색결과 리스트글 / jQuery 관련 URL 모음 > javascript&jQuery

본문 바로가기
사이트 내 전체검색

javascript&jQuery

[ jquery ] 검색결과 리스트글 / jQuery 관련 URL 모음

페이지 정보

작성자 웹지기 댓글 0건 조회 3,642회 작성일 18-09-28 11:27

본문

강좌
가볍고 쉬운 Ajax - jQuery 시작하기

가볍고 쉬운 Ajax - jQuery 시작하기|작성자 하루살이
ibm 강좌 - jQuery로 작업하기, Part 1: 브라우저로 데스크톱 응용 옮기기
ibm 강좌 - jQuery로 작업하기, Part 2: 내일 나올 웹 응용을 오늘 구현해보자
ibm 강좌 - jQuery로 Ajax 개발을 단순화 하기 
ibm 강좌 - jQuery로 작업하기, 3부: jQuery와 Ajax로 RIA 만들기
ibm 강좌 - Ajax로 사이트 전면 개편, Part 1: Ajax와 jQuery로 기존 사이트 개선하기
ibm 강좌 - Ajax로 사이트 전면 개편, Part 2: jQuery, Ajax, 툴팁, 라이트박스로 기존 사이트 개선하기
ibm 강좌 - Ajax로 사이트 전면 개편, Part 3: jQuery, Ajax 탭, 회전식 슬라이드쇼로 기존 사이트 개선하기
ibm 강좌 - Ajax로 사이트 전면 개편, Part 4: 기존 사이트를 jQuery와 Ajax forms를 사용하여 개선하기
Visual jQuery - 개체별 정리


플러그인
Best jQuery Plugins of 2011 - link
A jQuery Content Gallery Plugin - GalleryView
37 Phenomenal jQuery Plugins and Demos for Developers - link
240 plugins jquery - link
Easy Tabs And Sliders With tabSwitch
jQuery Slider Plugin: Easy Slider
jQuery File Upload Plugin- link
Customizable AJAX File Browser For jQuery- jQuery File Tree
Drag’n Drop Calendar With jQuery: FullCalendar
jQuery Mp3 Player Plugin: jPlayer 
jQuery Corner DemojQuery Corner Down 
jsTree 
jQuery Plotting Plugin : jqPlot 
Growl-Like Notifications With jQuery: Gritter
Customizable Upload Interfaces : Uploadify 
Slideshow For jQuery Or scriptaculous: Horinaja
Simplest jQuery And Prototype Slideshows : "Simplest jQuery Slideshow" (demo).
Background Image Animation With jQuery : jAni 
jQuery plugin for easily integrating Google Maps : gMap
jQuery Lightbox plugin : ColorBox
Charming Slideshows With jqFancyTransitions : jqFancyTransitions
jQuery image viewer plugin : YoxView
Lightweight Flash Video Player : f4Player
jQuery image zoom plugin : Cloud Zoom 
jQuery plugin for displaying highly-customizable : Pines Notify 
Free CSS Drop-Down Menu Framework : Free CSS Drop-Down Menu Framework
jQuery plugin for displaying animated notifications : jNotify
Free Javascript Charting Library : Elycharts 
jQuery Image Slider With Thumbnails Display : Fotorama
A Responsive jQuery Carousel Plugin : Elastislide
Responsive Image Gallery with Thumbnail Carousel : Responsive Image Gallery
Isotope : http://isotope.metafizzy.co/ : Isotype is a jQuery plugin for creating dynamic and intelligent layouts. 
                                                        It also lets you reveal & hide items with filtering, re–order items with sorting – all
                                                        done with captivating animations.
FitText : http://fittextjs.com/ : FitText makes font-sizes flexible. Use this plugin on your fluid or responsive layout
                                           to achieve scalable headlines that fill the width of a parent element.
FlexSlider : http://flex.madebymufffin.com/ : FlexSlider is an awesome, fully responsive jQuery slider plugin. In other words,
                                                                it resizes to fit the screen on which it is displayed, and looks good doing it.
Sausage : http://christophercliff.github.com/sausage/ : Sausage is a jQuery UI widget for contextual pagination. It complements
                                                                                long or infinite-scrolling pages by keeping the user informed of her location
                                                                                within the document.
arbor.js : http://arborjs.org/ : Arbor is a graph visualization library built with web workers and jQuery. Rather than trying to be an 
                                          all-encompassing framework, arbor provides an efficient, force-directed layout algorithm plus abstractions
                                         for graph organization and screen refresh handling.
Mosaic : http://buildinternet.com/project/mosaic/ : Mosaic automatically generates sliding boxes & captions, allows slide & fade 
                                                                          animations with custom directions, and preloads images within boxes.
Supersized : http://buildinternet.com/project/supersized/ : Supersized is a fullscreen background slideshow built using the jQuery library
Slider Kit, sliding contents with jQuery : http://www.kyrielles.net/sliderkit/sliderkit_en.html
Ultimate Collection Of jQuery Tabs : link
jQuery Cycle Plugin : link


PHP
PHP와 jQuery를 이용한 장바구니 담기 효과 : Fly-To-Basket Effect With jQuery
File Manager With PHP & jQuery: SFBrowser


기타
드림위버에서 jQuery를 쉽게 쓰자
네이버 플래시 카페 jQuery 링크 모음
별이닷컴 - 별이 님의 플러그인 모음


예제
50여가지 이상의 놀라운 jQuery 예제
jQuery and Javascript Coding: Examples and Best Practices
45+ New jQuery Techniques For Good User Experience
37 Phenomenal jQuery Plugins and Demos for Developers
51+ Best of jQuery Tutorials and Examples
37 More Shocking jQuery Plugins
45+ Fresh Out of the oven jQuery Plugins
37 More Shocking jQuery Plugins
JQuery 이미지갤러리슬라이드  JQuery Image Galleries & Sliders - Best Of
 

추천0 비추천0

댓글목록

등록된 댓글이 없습니다.

Total 63건 3 페이지
  • 33 [ jquery ] 체크박스 제어
  • 체크여부 확인 - id가 동일한 체크박스에 대하여 선택되어 있는지 확인 : true / false 반환 $("#chkBox").is(":checked") ; $("input:checkbox[id='chkBox']").is(":checked") ; * 1.6이상일때 권장 사용법 $("#chkBox").prop("checked") ;체크박스 갯수 가져오기 - 선택된 체크박스 갯수 구하기 $(&#...
  • 웹지기 09-05 2733 0 0 댓글 0
  • 32 [ jquery ] 체크박스 체크확인
  • checked 여부 확인ID일 경우 ==> $("input:checkbox[id='ID']").is(":checked") == true : falseNAME일 경우 ==> $("input:checkbox[name='NAME']").is(":checked") == true : falsechecked/unchecked 처리ID일 경우 ==> $("input:checkbox[id=...
  • 웹지기 09-05 2694 0 0 댓글 0
  • 31 [ jquery ] 등록, 수정, 삭제, 등등의 예제
  • [code]====================================================================================- function 명insXXX - 등록(예)insBoard()updXXX - 수정(예)updBoard()delXXX - 삭제(예)delBoard()getXXX - 모든 화면 이동(예)getBoardList(), getBoardView()saveXXX - 확인(예)saveBoard()chkXXX - 체크 chkBoard()rese...
  • 웹지기 09-27 1 0 0 댓글 0
  • 30 [ javascript ] 정규표현식, Regular Expressions(regex, regexp) in …
  • 관련 문서http://www.regexr.com/https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExphttp://blog.outsider.ne.kr/360http://regexlib.com/DisplayPatterns.aspxhttp://blog.eairship.kr/197http://tryhelloworld.co.kr/courses/정규표현식정규 표현식이란 문자열에서 특정한 캐릭터 조합을 찾아...
  • 웹지기 09-27 2739 0 0 댓글 0
  • 29 [ javascript ] 특수 문자 ( 이스케이프 시퀀스 )
  • JavaScript는 직접 입력할 수 없는 문자를 만들기 위해 문자열에 포함시킬 수 있는 이스케이프 시퀀스를 제공합니다.이스케이프 시퀀스다음 표에서는 일반적인 문자에 대한 이스케이프 시퀀스의 몇 가지 예를 보여 줍니다.유니코드 문자 값이스케이프 시퀀스의미범주\u0008\b백스페이스\u0009\t탭공백\u000A\n줄 바꿈(새 줄)줄 종결자\u000B\v(이 표 아래에 있는 정보 참조)세로 탭공백\u000C\f폼 피드공백\u000D\r캐리지 리턴줄 종결자\u0020공백공백\u0022\"큰따...
  • 웹지기 09-23 4334 0 0 댓글 0
  • 27 [ jquery ] 라이브러리 모음
  • http://ui.jquery.com/jQueryUI 플러그인http://trirand.com/jqgrid/jQuery Grid 플러그인http://malsup.com/jquery/form/jQuery Form 플러그인File uploadAjax File UploadjQUploaderMultiple File Upload pluginjQuery File StyleStyling an input type fileProgress Bar PluginForm ValidationjQuery Validation...
  • 웹지기 09-28 3504 0 0 댓글 0
  • 26 [ javascript ] 자바스크립트 함수 모음
  • [code]<script language="javascrip">function 함수명(){ 소스}</script>:::외부:::<a href="#" onclick="alert('환영')"> ▶ 버튼에 스크립트 삽입<a href="javascript:alert('환영')"> ▶ 버튼에 스크립트 삽입<...
  • 웹지기 09-28 2615 0 0 댓글 0
  • 열람중 [ jquery ] 검색결과 리스트글 / jQuery 관련 URL 모음
  • 강좌가볍고 쉬운 Ajax - jQuery 시작하기-가볍고 쉬운 Ajax - jQuery 시작하기|작성자하루살이ibm 강좌 -jQuery로 작업하기, Part 1: 브라우저로 데스크톱 응용 옮기기ibm 강좌 -jQuery로 작업하기, Part 2: 내일 나올 웹 응용을 오늘 구현해보자ibm 강좌 -jQuery로 Ajax 개발을 단순화 하기ibm 강좌 -jQuery로 작업하기, 3부: jQuery와 Ajax로 RIA 만들기ibm 강좌 -Ajax로 사이트 전면 개편, Part 1: Ajax와 jQuer...
  • 웹지기 09-28 3643 0 0 댓글 0
  • 24 [jquery] jqeyry 튜토리얼 모음
  • 제이쿼리(JQuery)[jQuery] 001. 제이쿼리를 이용한 12달 달력 코딩하기Customizing and Theming jQuery UI Datepicker[미리보기][jQuery] 002.포토샵과 제이쿼리를 이용한 이미지 슬라이드 만들기Customizing and Theming jQuery UI Datepick[미리보기][jQuery] 003.페이지 번호를 통한 페이지 스크롤 바 만들기Extreme Makeover: jPaginator CSS3 Edition[미리보기][jQuery] 00...
  • 웹지기 09-28 3177 0 0 댓글 0
  • 23 [ jquery ] jquery 간단 정리
  • 기본 셀렉터[code]$("*") : 모두$("div p") : 모든 <div>에 포함된 모든 <p>$("#loginID") : id="loginID"$(".Columns") : class="Columns"$("p > a") : <p>에 포함된 한 단계 아래 레벨의 모든 &#...
  • 웹지기 09-27 3055 0 0 댓글 0
  • 20 [ jquery ] jquery 강좌 및 참고 사이트 모음
  • 강좌http://www.taeyo.pe.kr/Columns/List.aspx?SEQ=29&IDX=0비디오 강좌http://blog.themeforest.net/screencasts/jquery-for-absolute-beginners-video-series/예제http://www.webdesignerwall.com/tutorials/jquery-tutorials-for-designers/참고사이트http://webitect.net/tutorials/jquery-tutorial-pa...
  • 웹지기 09-27 2183 0 0 댓글 0
  • 19 [ jquery ] jquery 활용 js 파일 include 하기
  • jquery를 이용해 js 파일들을 인클루드 하는 플러그인먼저 include 해야할 js 파일을 한 후 순차적으로 js 파일을 인클루드1. 기본환경설정[code]<script src="/common/js/jquery-1.7.1.min.js" ></script><script src="/common/js/jquery.extended.js" ></script&...
  • 웹지기 09-27 4902 0 0 댓글 0
게시물 검색

회원로그인

접속자집계

오늘
4,315
어제
11,874
최대
33,828
전체
8,538,351

그누보드5
Copyright © funyphp.com. All rights reserved.