私は初心者で、プラグインの書き方がわかりません。このjquery関数のプラグインの書き方を手伝ってくれる人はいますか?
$(document).ready(function(){
var offset_1 = $("li.list:first-child").position().left;
var offset_2 = $("li.list:nth-child(2)").position().left;
var totalWidth =offset_2-offset_1;
$("a.abc").click(function() {
$("#scroller").not(":animated").animate({"scrollLeft":"-="+totalWidth},300);
return false;
});
$("a.def").click(function() {
$("#scroller").not(":animated").animate({"scrollLeft":"+="+totalWidth},300);
return false;
});
});