我的也是没有效果,帮我看一下吧,我跟源码对了对没有什么不一样的地方啊?
js部分:
var loopPlayerInit=(function(){ //初始化函数loopPlayerInit
var $butLeft=null,
$butRight=null,
$butPlay=null;
origin=['125px','600px'];
function init(){
$butLeft=$(".butLeft"),
$butRight=$(".butRight"),
$butPlay=$(".butPlay"),
$imglist=$(".mainbox ul li");
configer();
setEvent();
}
function configer(){
var ang=6,
aint=-6;
$imglist.transform({origin:origin});
$imglist.each(function(i){
var $this=$(this);
$this.transform({rotate:aint+(i*ang)+"deg"});
})
}
return init;
})();
loopPlayerInit();
html部分:
var loopPlayerInit=(function(){ //初始化函数loopPlayerInit
var $butLeft=null,
$butRight=null,
$butPlay=null;
origin=['125px','600px'];
function init(){
$butLeft=$(".butLeft"),
$butRight=$(".butRight"),
$butPlay=$(".butPlay"),
$imglist=$(".mainbox ul li");
configer();
setEvent();
}
function configer(){
var ang=6,
aint=-6;
$imglist.transform({origin:origin});
$imglist.each(function(i){
var $this=$(this);
$this.transform({rotate:aint+(i*ang)+"deg"});
})
}
return init;
})();
loopPlayerInit();