Home >Web Front-end >JS Tutorial >Code to control iframe scrolling with javascript_javascript skills

Code to control iframe scrolling with javascript_javascript skills

WBOY
WBOYOriginal
2016-05-16 19:15:16990browse

Now there is a horizontal IFRAME. I need to click an image outside the iframe to horizontally scroll an html page inside the iframe, but I don’t want to see the scroll bar of the iframe. How to solve it????

Code to control iframe scrolling with javascript_javascript skills 
 Code to control iframe scrolling with javascript_javascript skills 
  

 

demo.htm                                🎜>
 
  
  onmousedown="timer1=setInterval('parent.frames['in'].scrollBy(0 ,-1)',10)"
onmouseup="clearInterval(timer1)">
onmousedown="timer1=setInterval('parent.frames ['in'].scrollBy(0,1)',10)"
onmouseup="clearInterval(timer1)" >


in.htm

0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0


Scroll horizontally..
demox.htm



 
 
 
  
 

  onmousedown=" timer1=setInterval('parent .frames['in'].scrollBy(-1,0)',10)"
onmouseup="clearInterval(timer1)">
onmousedown="timer1=setInterval('parent.frames['in'].scrollBy(1,0)',10)" onmouseup="clearInterval(timer1)" >


 
inx.htm 

 
 
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn