Jquery 기반 슬라이드 세트 효과 패키지 다운로드
<script type="text/javascript">
var currentImage;
var currentIndex = -1;
// ( index 0 )
function showImage(index) {
//
$(".CounterCurrent").html(index + 1);
//
var len = $('#OriginalPic img').length;
if (index == len - 1) {
$("#aNext").hide();
}
else {
$("#aNext").show();
}
if (index == 0) {
$("#aPrev").hide();
}
else {
$("#aPrev").show();
}
//
if (index < $('#OriginalPic img').length) {
var indexImage = $('#OriginalPic p')[index];
//
if (currentImage) {
if (currentImage != indexImage) {
$(currentImage).css('z-index', 2);
$(currentImage).fadeOut(0, function () {
$(this).css({ 'display': 'none', 'z-index': 1 })
});
}
}
//
$(indexImage).show().css({ 'opacity': 0.4 });
$(indexImage).animate({ opacity: 1 }, { duration: 200 });
//
currentImage = indexImage;
currentIndex = index;
//
$('#ThumbPic img').removeClass('active');
$($('#ThumbPic img')[index]).addClass('active');
//
//var tempHeight = $($('#OriginalPic img')[index]).height();
//$('#aPrev').height(tempHeight);
//$('#aNext').height(tempHeight);
}
}
//
function ShowNext() {
var len = $('#OriginalPic img').length;
var next = currentIndex < (len - 1) ? currentIndex + 1 : 0;
showImage(next);
}
//
function ShowPrep() {
var len = $('#OriginalPic img').length;
var next = currentIndex == 0 ? (len - 1) : currentIndex - 1;
showImage(next);
}
//
$("#aNext").click(function () {
ShowNext();
if ($(".active").position().left >= 144 * 5) {
$("#btnNext").click();
}
});
//
$("#aPrev").click(function () {
ShowPrep();
if ($(".active").position().left <= 144 * 5) {
$("#btnPrev").click();
}
});
//
$(".OriginalPicBorder").ready(function () {
ShowNext();
//
$('#ThumbPic li').bind('click', function (e) {
var count = $(this).attr('rel');
showImage(parseInt(count) - 1);
});
});
</script>
온라인 데모:http://demo.jb51.net/js/2011/Gallery/index.html포장 다운로드:/201102/yuanma/Gallery_jb51.rar
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
슬라이드를 jQuery & TweenMax & CSS3의 맞춤 기술로 직접 제작고객이 "꼭이 사이트의 슬라이드를 구현하고 싶다!"라고 강한 요청이 있었기 때문입니다. 그 사이트의 소스를 보면, 바리 발리의 풀 스크래치! 자신의 팔에서 도저히 흉내낼 수 없습니다 이것은 기존 슬라이더 플러그인이며...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.