Auto Scroll

Youssef Ouadban Tech

Learn how to auto scroll a web page down or up and enjoy hands-free reading. Injcection code or uing a bookmarklet or extensions can help. This extension is amazing, and has always worked great, but I've noticed that it sometimes shakes the screen. It varies depending on the site. I have to use the Simple Auto Scroll extension if I want to avoid the shaking. There's no mouse control in Simple Auto, but it's 3 customizable levels, and it's steady.

Available on Google Play Store for Android

Scroll

https://play.google.com/store/apps/details?id=com.tafayor.autoscroll2&hl=en_US&gl=US

This auto scroll app allows you to scroll automatically the content on your screen by a simple tap on the widget, and you can also jump to top or bottom of the page.

This new feature will be added as a system-wide functionality so it can be used with all other apps, and can easily be activated or deactivated.

[ Features ]

✓ Automatic scrolling

✓ Auto Scrolling Up and Down

✓ Auto Scrolling Right and Left

✓ Jumping to top or bottom

✓ Scroll vertically and horizontally.

Auto Scroll

✓ Select a scrollable area (when there is more than one on the screen).

✓ Widget

✓ Paging

✓ Activation by shake

✓ Per-App settings

This app uses Accessibility services

This app helps users with physical disabilities and muscle fatigue to automatically and easily scroll the screen in all directions by a simple tap.

The screen will keep scrolling until the user touches the screen again.

Permissions

✓ This app requires the accessibility service permission in order to be able to scroll the screen.

⇒ This app will be able to perform gestures in order to automatically scroll screen by a series of emulated gestures.

⇒ This app will be able to observe the actions related to the interface in order to detect the currently active app and then provide contextual functioning and per-app settings.

Tag: Page PreviewShare: PrevAuto Scroll

Canada Business

Next

Kofax Business Connect

Be the first to comment “Automatic Scroll Auto Scroller”

WHY GAO

Auto Scroll

From our head office in New York City (NYC) and branch office in Canada, GAO Tek serves customers in 50 countries across the globe. Whether it is the USA and Canada, Asian countries such as Philippines, Malaysia, Indonesia, Singapore and Thailand, European countries including The United Kingdom, Germany, France, and Italy, the Middle Eastern countries such as Saudi Arabia, United Arabic Emirate (UAE), Turkey; or South Pacific countries such as Australia and New Zealand, our goal is to provide leading edge products and service to engineers in every industry.

We offer a wide range of high quality test and measurement equipment and drones that can be used in any number of global industries. We strive to offer precision and reliable test instruments to you at affordable costs. Our sales staff are here to answer any and all questions.

Visit Our Main WebsiteScroll

Our Offices

Head Office US

GAO Tek Inc.
244 Fifth Avenue, Suite A31
Manhattan, New York,
N.Y., 10001
USA

Call Us

Disable

Toll Free: 1-877-585-9555

Canadian Office

Auto Scroller Saw

GAO Tek Inc.
1885 Clements Rd, Suites 215-218
Pickering, Greater Toronto Area
Ontario, L1W 3V4
Canada

Call Us

Auto Scroller

Toll Free: 1-877-585-9555
Phone: 289-660-5590
Fax: 289-660-5591

Copyright GAO Tek & GAO Group Inc., All Rights Reserved | GAO Group Celebrating Over 20 Years of Innovation

Smooth Auto Scroll Tutorial

In this JavaScript programming lesson we are going to scratch program smooth auto scrolling effects on your web pages. After we discuss the core programming that makes the magic happen, we show how to externalize and reuse your scripted creation. The method we decided to animate on the window object is the scroll() method, you can custom animate any CSS properties or DOM methods over time using simple looping mechanisms in JavaScript. sample.html<!DOCTYPE html> <html> <head> <style> div.contentbox { background: #FFF; height: 500px; margin: 20px; font-size: 28px; border: #CCC 1px dashed; } </style> <script src='autoScrollTo.js'></script> </head> <body> <h2>JavaScript Smooth Animated Auto Scroll Tutorial</h2> <a href='#' onmousedown='autoScrollTo('div1');'> Document Section 1</a><br /> <a href='#' onmousedown='autoScrollTo('div2');'> Document Section 2</a><br /> <a href='#' onmousedown='autoScrollTo('div3');'> Document Section 3</a><br /> <a href='#' onmousedown='autoScrollTo('div4');'> Document Section 4</a><br /> <div>Div 1 content...</div> <a href='#' onmousedown='resetScroller('myheading');'> go back to top</a> <div>Div 2 content...</div> <a href='#' onmousedown='resetScroller('myheading');'> go back to top</a> <div>Div 3 content...</div> <a href='#' onmousedown='resetScroller('myheading');'> go back to top</a> <div>Div 4 content...</div> <a href='#' onmousedown='resetScroller('myheading');'> go back to top</a> </body> </html>autoScrollTo.jsvar scrollY = 0; var distance = 40; var speed = 24; function autoScrollTo(el) { var currentY = window.pageYOffset; var targetY = document.getElementById(el).offsetTop; var bodyHeight = document.body.offsetHeight; var yPos = currentY + window.innerHeight; var animator = setTimeout('autoScrollTo('+el+')',24); if(yPos > bodyHeight){ clearTimeout(animator); } else { if(currentY < targetY-distance){ scrollY = currentY+distance; window.scroll(0, scrollY); } else { clearTimeout(animator); } } } function resetScroller(el){ var currentY = window.pageYOffset; var targetY = document.getElementById(el).offsetTop; var animator = setTimeout('resetScroller('+el+')',speed); if(currentY > targetY){ scrollY = currentY-distance; window.scroll(0, scrollY); } else { clearTimeout(animator); } }

JavaScript Videos

Scroll Programming

Peekaboo Box Tutorial Scroll Bottom CSS Transition AnimationParallax Scroll Effects Tutorial Animation ProgrammingMagic Header Scroll Page TutorialScroll Load Dynamic Content When User Reach Bottom AjaxSmooth Auto Scroll Tutorial

Comments are closed.