단일 디지털 복제 실현
<!DOCTYPE html>
<html>
<head>
<title>MyHtml2.html</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="./js/jquery-1.7.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#change").bind("click",function(event){
if( $("#changeInput").val() == "" ){
var scrollNum = 12;
}else{
var scrollNum = parseInt($("#changeInput").val()) + 2;
}
$(".time-container ul").animate({top:-(396-36*scrollNum)},200);
})
})
</script>
<style type="text/css">
ul,li{list-style: none;margin: 0;padding: 0;}
.time-container{width: 28px;height: 36px;overflow: hidden;}
.time-container ul{position: relative;top: 0;}
.time-container li{width: 28px;height: 36px;}
</style>
</head>
<body>
<div class="time-container">
<ul>
<li style="background-image: url(./image/9.png)"></li>
<li style="background-image: url(./image/8.png)"></li>
<li style="background-image: url(./image/7.png)"></li>
<li style="background-image: url(./image/6.png)"></li>
<li style="background-image: url(./image/5.png)"></li>
<li style="background-image: url(./image/4.png)"></li>
<li style="background-image: url(./image/3.png)"></li>
<li style="background-image: url(./image/2.png)"></li>
<li style="background-image: url(./image/1.png)"></li>
<li style="background-image: url(./image/0.png)"></li>
<li style="background-image: url(./image/blank.png)"></li>
</ul>
</div>
<div>
<label> , </label>
<input type="text" id="changeInput">
<button id="change">change Num</button>
</div>
</body>
</html>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Java는 정규 표현식을 사용하여 디지털 기능의 예시를 찾아냅니다.본고는 자바가 정규 표현식을 사용하여 디지털 기능을 찾아내는 것을 실례로 다루고 있다.다음과 같이 여러분에게 참고할 수 있도록 공유합니다. 1. 질문: Stringstr = "fjd789klsd908434jk #$%...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.