[jQuery] 勉強中
移転しました。
以下のページ見て一通り勉強してみる。
http://www.openspc2.org/JavaScript/Ajax/jQuery_study/ver1.2.1/index.html
ぷらぐいん
一通り勉強してみたので、プラグインとかみてみた
Step Carousel Viewer
スクロールしてくれる便利そうなプラグイン発見。
http://www.dynamicdrive.com/dynamicindex4/stepcarousel.htm
以下のようなソースで動かしてみたけど、ちゃんと動いた。便利〜。
jquery.js, stepcarousel.js は予めダウンロードしとかんと動きません。
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="content-type" content="text/html;charset=utf-8"> <title>jQuery Sample</title> <link rel="stylesheet" href="css/main.css" type="text/css" media="all"> <script type="text/javascript" src="js/jquery.js"></script> <script type="text/javascript" src="js/stepcarousel.js"> /*********************************************** * Step Carousel Viewer script- (c) Dynamic Drive DHTML code library (www.dynamicdrive.com) * Visit http://www.dynamicDrive.com for hundreds of DHTML scripts * This notice must stay intact for legal use ***********************************************/ </script> <style type="text/css"> .stepcarousel{ position: relative; /*leave this value alone*/ border: 10px solid black; overflow: scroll; /*leave this value alone*/ width: 270px; /*Width of Carousel Viewer itself*/ height: 200px; /*Height should enough to fit largest content's height*/ } .stepcarousel .belt{ position: absolute; /*leave this value alone*/ left: 0; top: 0; } .stepcarousel .panel{ float: left; /*leave this value alone*/ overflow: hidden; /*clip content that go outside dimensions of holding panel DIV*/ margin: 10px; /*margin around each panel*/ width: 250px; /*Width of each panel holding each content. If removed, widths should be individually defined on each content DIV then. */ } </style> </head> <script type="text/javascript"> stepcarousel.setup({ galleryid: 'mygallery', //id of carousel DIV beltclass: 'belt', //class of inner "belt" DIV containing all the panel DIVs panelclass: 'panel', //class of panel DIVs each holding content panelbehavior: {speed:500, wraparound:false, persist:true}, defaultbuttons: {enable: true, moveby: 1, leftnav: ['http://i34.tinypic.com/317e0s5.gif', -5, 80], rightnav: ['http://i38.tinypic.com/33o7di8.gif', -20, 80]}, statusvars: ['statusA', 'statusB', 'statusC'], //register 3 variables that contain current panel (start), current panel (last), and total panels contenttype: ['inline'] //content setting ['inline'] or ['external', 'path_to_external_file'] }) </script> <div id="mygallery" class="stepcarousel" style="width: 540px"> <div class="belt"> <div class="panel"> <img src="http://i30.tinypic.com/531q3n.jpg" /> </div> <div class="panel"> <img src="http://i29.tinypic.com/xp3hns.jpg" /> </div> <div class="panel"> <img src="http://i26.tinypic.com/11l7ls0.jpg" /> </div> <div class="panel"> <img src="http://i31.tinypic.com/119w28m.jpg" /> </div> <div class="panel"> <img src="http://i27.tinypic.com/34fcrxz.jpg" /> </div> </div> </div> <p> <b>Current Panel:</b> <span id="statusA"></span> <b style="margin-left: 30px">Total Panels:</b> <span id="statusC"></span><br /> <a href="javascript:stepcarousel.stepBy('mygallery', -1)">Back 1 Panel</a> <a href="javascript:stepcarousel.stepBy('mygallery', 1)" style="margin-left: 80px">Forward 1 Panel</a> <br /> <a href="javascript:stepcarousel.stepTo('mygallery', 1)">To 1st Panel</a> <a href="javascript:stepcarousel.stepBy('mygallery', 2)" style="margin-left: 80px">Forward 2 Panels</a> </p> </body> </html>