본문 바로가기

WEB/Javascipt

Easy Slider 1.7 - Numeric Navigation jQuery Slider 참조 : http://goo.gl/9B5oL
Autotab: jQuery auto-tabbing and filter plugin http://www.mathachew.com/sandbox/jquery-autotab/
jquery tools http://flowplayer.org/tools/demos/index.html 슬라이딩 에 유용한 jquery 플러그인 기능이 많은 만큼 조금 헷갈린다 아쉬운점도 눈에 띠고.... 스크립트는 대략적으로 이렇게 쓰인다. 원하는 옵션을 주어서 필요한것을 주게 된다. $(document).ready(function() { $("#chained").scrollable({circular: true, mousewheel: false , getIndex: 1}).autoscroll({interval: 3000, autoplay: true}).navigator();; }); Css 사용법 사이트 예제는 이것저것 많이 들어가있다.. 100%는 아니지만 쓸모없는건 떼고.. 대부분 기본적인 기능만 필요로 하는것 같다. ...
Roundabout for jQuery 이미지 회전 시키기 여러가지 http://www.fredhq.com/projects/roundabout-shapes 실행 자바스크립트 오토스타트 포함 $(document).ready(function() { var interval; $('#myRoundabout') .roundabout({ shape: 'figure8', minOpacity: 0.1, //startingChild: 1, //duration: 1200 }) .hover( function() { // oh no, it's the cops! clearInterval(interval); }, function() { // false alarm: PARTY! interval = startAutoPlay(); } ); // let's get this party started in..
[Jquery] Position fixed for Internet Explorer 6 다운로드 : http://plugins.jquery.com/project/FixedIE 데모 : http://fixedie.com/demo/demo.html ie6 Psition Fixed jquery 플러그인
레이어 보이기 감추기 참조 : http://woork.blogspot.com/2007/10/show-hide-layer-using-simple-javascript.html
셀렉트박스 대체 스크립트 참조 : http://www.psyonline.kr/1268996171
CSS3 selectors for IE6~8 참조 : http://selectivizr.com/ ie 에서 css3 가능하게 하는 스크립트 인것같다 아직테스트는 못해봤지만 테스트 후기를.. 2012 - 05 - 27 추가내용 [js plugin]selectivizr ie6~8 까지 background 이미지 사라지는 현상 아래 사이트에서 셀렉터 지원을 위해 js파일을 인클루드를 하였지만 배경이지미가 사라지는 현상을 겪게된다.네이버는 아에 관련 내용이 검색되지 않았고 구글링을 했더니 영어만 수두르륵 결구 원인해결 우선 충돌하는 부분이 있는데 이부분을 피하는 규칙이다.1. 배경이미지는 같은 서버내에 있어야 한다.2. 확장자는 무조건 PNG 이다.ㅡㅡ; 꼭 지켜야한다.... 셀렉터 쓰기 힘들어요 킁 ㅡㅜ 참조 : https://gist.github.co..