Home > Web Front-end > JS Tutorial > body text

Code to control iframe scrolling with javascript_javascript skills

WBOY
Release: 2016-05-16 19:15:16
Original
964 people have browsed it

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 

 
 
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!