JS 끝 및 아래쪽 인 스 턴 스 불 러 오기
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
h1{
background: #ccc;
text-align:center;
}
#image{
position: fixed;
left: 95%;
top: 50%;
}
</style>
</head>
<body>
<h1>1</h1>
<h1>2</h1>
<h1>3</h1>
<h1>4</h1>
<h1>5</h1>
<h1>6</h1>
<h1>7</h1>
<h1>8</h1>
<h1>9</h1>
<h1>10</h1>
<h1>11</h1>
<h1>12</h1>
<h1>13</h1>
<h1>14</h1>
<h1>15</h1>
<h1>16</h1>
<h1>17</h1>
<h1>18</h1>
<h1>19</h1>
<h1>20</h1>
<img src="" alt="" id="image" width=50px heigth=50px>
</body>
<script>
var imgobj=document.getElementById("image");
//
var nowHeight=document.documentElement.clientHeight||document.body.clientHeight;
//
var scrollHeight=document.documentElement.scrollHeight||document.body.scrollHeight;
window.onscroll=function(){
//
var scrollTop=document.documentElement.scrollTop||document.body.scrollTop;
//
imgobj.src="images/1.jpg";
//
// if(scrollHeight==scrollTop+nowHeight){
// ****
// }
}
imgobj.onclick=function(){
//
window.scrollTo(0,0);
}
</script>
</html>
2.<!DOCTYPE html>
<html>
<head>
<title> </title>
<meta charset="utf-8" />
<script>
window.onscroll = function(){
var t = document.documentElement.scrollTop || document.body.scrollTop;
var top_div = document.getElementById( "go" );
}
//ptt
var ptt=900;
function pageScroll() {
window.scrollBy(0,-10); // 10px
if(document.body.scrollTop==0) {
ptt=ptt+10;
}
scrolldelay = setTimeout('pageScroll()',2); //2
if(ptt>=1000){
ptt=0;
clearTimeout(scrolldelay);
}
//pageScroll ends
}
</script>
</head>
<body>
<h1>1</h1>
<h1>2</h1>
<h1>3</h1>
<h1>4</h1>
<h1>5</h1>
<h1>6</h1>
<h1>7</h1>
<h1>8</h1>
<h1>9</h1>
<h1>10</h1>
<h1>11</h1>
<h1>12</h1>
<h1>13</h1>
<h1>14</h1>
<h1>15</h1>
<h1>16</h1>
<h1>17</h1>
<h1>18</h1>
<h1>19</h1>
<span style="white-space:pre"> </span><h1>20</h1>
<span style="white-space:pre"> </span><div id="go" onclick="pageScroll()"><img src="images/1.jpg" width="50px" height="50px"></div>
</html>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.