jq-시차 회전식 윤방 기반
$(function(){
var $slidepic = $('#slidepic');
var aLi = $slidepic.find('li');
var timer = null;
var off = true;
// li
var pos = [
{
width:564,
height:330,
left:34,
top:0,
opacity:0,
z:2
},
{
width:564,
height:330,
left:34,
top:79,
opacity:0.8,
z:3
},
{
width:800,
height:500,
left:200,
top:0,
opacity:1,
z:4
},
{
width:564,
height:330,
left:605,
top:79,
opacity:0.8,
z:3
},
{
width:564,
height:330,
left:605,
top:0,
opacity:0,
z:2
}
]
// li
fnMove()
//
$slidepic.find('.prev').on('click',function(){
if(off){
off = false;
fnMove(true)
}
})
//
$slidepic.find('.next').on('click',function(){
if(off){
off = false;
fnMove(false)
}
})
//li
function fnMove(b){
if(typeof(b) != 'undefined'){// , li ,
if(b){
pos.push(pos.shift())
}else{
pos.unshift(pos.pop())
}
}
$.each(pos, function(i, val) {
aLi.eq(i).css('z-index',pos[i].z).stop().animate(pos[i],500,function(){
off = true;
});
});
}
//
timer = setInterval(function(){
fnMove(true)
},5000)
// ,
$slidepic.hover(function(){
clearInterval(timer)
$(this).find('.toggle').fadeIn();
},function(){
clearInterval(timer)
timer = setInterval(function(){
fnMove(true)
},5000)
$(this).find('.toggle').fadeOut();
})
})
blockquote,body,button,dd,dl,dt,fieldset,form,h1,h2,h3,h4,h5,h6,hr,input,legend,li,ol,p,pre,td,textarea,th,ul{margin:0;padding:0}
body,button,input,select,textarea{font:12px/1.5 "Microsoft YaHei", " ", SimSun, " ", sans-serif;color: #666;}
ol,ul{list-style:none}
a{text-decoration:none}
fieldset,img{border:0;vertical-align:top;}
a,input,button,select,textarea{outline:none;}
a,button{cursor:pointer;}
.wrap{
width:1200px;
margin-left:auto;
margin-right:auto
}
.slidepic{
position: relative;
height: 500px;
}
.slidepic ul{
position: absolute;
left:0;
top:0;
z-index: 1;
}
.slidepic li{
position: absolute;
width: 800px;
height: 500px;
left:200px;
top:0;
background-color: #6475ae;
}
.slidepic img{
width: 100%;
height: 100%;
}
.toggle{
position: absolute;
z-index:10;
width: 100%;
height: 100%;
display: none;
}
.toggle a{
position: absolute;
left:100px;
top:50%;
width: 76px;
height: 112px;
margin-top: -56px;
background:url(../img/prev.png) 0 0 no-repeat;
}
.toggle .next{
right: 100px;
left: auto;
background-image:url(../img/next.png);
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.