슬라이더
3155 단어 그림.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gbk">
<!--<meta name = "viewport" content = "user-scalable=no, width=device-width">-->
<title>Insert title here</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
<script type="text/javascript" src="jquery-1.8.0.min.js"></script>
<script type="text/javascript">
$(document).bind("mobileinit", function() {
$.mobile.autoInitializePage = false;
});
</script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<script type="text/javascript">
var current = null;
window.onload = function() {
current = $('#image1');
$("#div222").on("swipeleft",function(){
left();
});
$("#div222").on("swiperight",function(){
right();
});
}
var left = function() {
if(!current.next().is('img')) {
while(current.prev().is('img')) {
current = current.prev();
current.css('marginLeft',0);
}
return;
}
current.animate({marginLeft:-800},'fast',function() {
if(current.next().is('img')) {// if BUG
current = current.next();
}
});
}
var right = function() {
if(!current.prev().is('img')) {
while(current.next().is('img')) {
current.css('marginLeft',-800);
current = current.next();
}
return;
}
current.prev().animate({marginLeft:0},'fast',function() {
if(current.prev().is('img')) {// if BUG
current = current.prev();
}
});
}
</script>
</head>
<body>
<div style="width: 800px;margin: auto; overflow: hidden;">
<div id="div222" style="width: 30000px;height: 300px;">
<img id="image1" src="img1.jpg" width="800px;" height="300px;"><img id="image2" src="img2.jpg" width="800px;" height="300px;"><img id="image3" src="img3.jpg" width="800px;" height="300px;"><img id="image4" src="img4.jpg" width="800px;" height="300px;">
</div>
</div>
<br>
<center>
<button onclick="left()"><</button>
<button onclick="right()">></button>
</center>
</body>
</html>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
데이터 구조 - 그림 - C 언어 - 인접 행렬데이터 구조 - 그림 - C 언어 - 인접 행렬 공식 표기 법 응시 표기 법...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.