<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr</title>
<link>http://snipplr.com/tags/scroll</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Fri, 24 May 2013 14:48:11 GMT</pubDate>
<item>
<title>(HTML) HTML5 Scrollbar Percentage Position using JavaScript - adrianparr</title>
<link>http://snipplr.com/view/69164/html5-scrollbar-percentage-position-using-javascript/</link>
<description><![CDATA[ <p>This JavaScript gets you the percentage position of the browser's scrollbar.</p> ]]></description>
<pubDate>Thu, 20 Dec 2012 02:36:57 GMT</pubDate>
<guid>http://snipplr.com/view/69164/html5-scrollbar-percentage-position-using-javascript/</guid>
</item>
<item>
<title>(Objective C) vertical lock scroll - izrak</title>
<link>http://snipplr.com/view/68576/vertical-lock-scroll/</link>
<description><![CDATA[ <p>Was used to unlock paid powerups</p> ]]></description>
<pubDate>Thu, 15 Nov 2012 23:23:00 GMT</pubDate>
<guid>http://snipplr.com/view/68576/vertical-lock-scroll/</guid>
</item>
<item>
<title>(jQuery) jQuery Cycle code to scroll up and down like a scroll bar - JoshChris</title>
<link>http://snipplr.com/view/65982/jquery-cycle-code-to-scroll-up-and-down-like-a-scroll-bar/</link>
<description><![CDATA[ <p>This is some code that creates an effect for jQuery Cycle to scroll up when you click the down button and down when you click the up button - like a scrollbar.</p> ]]></description>
<pubDate>Fri, 06 Jul 2012 09:08:56 GMT</pubDate>
<guid>http://snipplr.com/view/65982/jquery-cycle-code-to-scroll-up-and-down-like-a-scroll-bar/</guid>
</item>
<item>
<title>(jQuery) Disable Scrolling - sassinack</title>
<link>http://snipplr.com/view/65617/disable-scrolling/</link>
<description><![CDATA[ <p>Prevent scrolling</p> ]]></description>
<pubDate>Thu, 14 Jun 2012 09:27:55 GMT</pubDate>
<guid>http://snipplr.com/view/65617/disable-scrolling/</guid>
</item>
<item>
<title>(jQuery) Smooth Scrolling to Any ID - thewickedchemist</title>
<link>http://snipplr.com/view/65333/smooth-scrolling-to-any-id/</link>
<description><![CDATA[ <p>Simply set the id in the content, and use a hash in the anchor to scroll to it.</p> ]]></description>
<pubDate>Sat, 02 Jun 2012 14:48:19 GMT</pubDate>
<guid>http://snipplr.com/view/65333/smooth-scrolling-to-any-id/</guid>
</item>
<item>
<title>(jQuery) Substitute for the scroll event - Narayon</title>
<link>http://snipplr.com/view/64609/substitute-for-the-scroll-event/</link>
<description><![CDATA[ <p>Another approach that helps saving the overhead calls of the scroll event and the subsequent code.</p> ]]></description>
<pubDate>Mon, 16 Apr 2012 06:12:25 GMT</pubDate>
<guid>http://snipplr.com/view/64609/substitute-for-the-scroll-event/</guid>
</item>
<item>
<title>(HTML) How to add your own social icons as scrolling buttons to your WordPress Site: - michellebracken</title>
<link>http://snipplr.com/view/63921/how-to-add-your-own-social-icons-as-scrolling-buttons-to-your-wordpress-site/</link>
<description><![CDATA[ <p>How to add these as scrolling buttons to your WordPress Site:

Upload each individual image to your ftp or to a free image hosting server and copy the url of each image location.
Add the following code to the footer.php of your WordPress Site by clicking on the Editor button under Appearance on your Dashboard and then clicking on the Footer.php in the right hand column. I would put it toward the bottom, and make sure that you don’t accidentally add it inside of another div.
Switch out the “Your Image Urls” with the urls that you just saved, and of course make sure to switch out the link urls to your actual contact links. Also, make sure that each titles matches each image. (This is very important, so that when someone scrolls over your facebook button, the words Facebook appear – or whatever text you put there.)
The code I’ve given above has the display dimensions that you see in the image above. You can change how they appear, however, by editing the pixel numbers and choosing whether you want them to appear on the left or right hand of the screen, and whether you want them to appear on the top or bottom of the screen.
NEVER, EVER copy and paste directly from here or anywhere on the web. Put the code into a text editor first, and ensure that all of the quotation marks are facing the proper direction and that there are no extra spaces.</p> ]]></description>
<pubDate>Wed, 14 Mar 2012 16:03:10 GMT</pubDate>
<guid>http://snipplr.com/view/63921/how-to-add-your-own-social-icons-as-scrolling-buttons-to-your-wordpress-site/</guid>
</item>
<item>
<title>(CSS) change scrollbar color using css - satinfo30</title>
<link>http://snipplr.com/view/63792/change-scrollbar-color-using-css/</link>
<description><![CDATA[ <p>this code is used to change the scroll bar color change</p> ]]></description>
<pubDate>Wed, 07 Mar 2012 17:19:47 GMT</pubDate>
<guid>http://snipplr.com/view/63792/change-scrollbar-color-using-css/</guid>
</item>
<item>
<title>(jQuery) Smooth Scroll to Top Function - thewickedchemist</title>
<link>http://snipplr.com/view/63285/smooth-scroll-to-top-function/</link>
<description><![CDATA[ <p>Hides the button based on scroll position, fades in and out as necessary and upon click smoothly scrolls back to the top.</p> ]]></description>
<pubDate>Sun, 12 Feb 2012 12:38:43 GMT</pubDate>
<guid>http://snipplr.com/view/63285/smooth-scroll-to-top-function/</guid>
</item>
<item>
<title>(JavaScript) Preventing elastic scrolling on iDevice - timothypwalter</title>
<link>http://snipplr.com/view/63008/preventing-elastic-scrolling-on-idevice/</link>
<description><![CDATA[ <p>If you a flick a web app past the bottom or top of the page, the page itself gets elastically tugged away from the URL bar or the button bar (or the bottom/top of the screen if it's in full-screen mode).

This behavior is another giveaway that your app isn't native, and it's rarely the behavior you want in a native app.

To stop this behavior, capture touchmove events on the document in JavaScript and cancel them. You can do this by adding a handler to the body tag, and invoking the preventDefault method on the event object:</p> ]]></description>
<pubDate>Thu, 02 Feb 2012 22:52:08 GMT</pubDate>
<guid>http://snipplr.com/view/63008/preventing-elastic-scrolling-on-idevice/</guid>
</item>
<item>
<title>(HTML) jQuery Sticky Nav on Scroll - ryarwood</title>
<link>http://snipplr.com/view/62854/jquery-sticky-nav-on-scroll/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Mon, 30 Jan 2012 08:47:02 GMT</pubDate>
<guid>http://snipplr.com/view/62854/jquery-sticky-nav-on-scroll/</guid>
</item>
<item>
<title>(jQuery) Custom Jquery Cycle Animation (slide &amp;amp; fade version) - ryarwood</title>
<link>http://snipplr.com/view/57775/custom-jquery-cycle-animation-slide--fade-version/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 12 Aug 2011 03:47:54 GMT</pubDate>
<guid>http://snipplr.com/view/57775/custom-jquery-cycle-animation-slide--fade-version/</guid>
</item>
<item>
<title>(jQuery) Scroll vertical lento jquery - n19ht</title>
<link>http://snipplr.com/view/57232/scroll-vertical-lento-jquery/</link>
<description><![CDATA[ <p>Esto permite hacer un suave scroll hacia el top de la página.</p> ]]></description>
<pubDate>Thu, 28 Jul 2011 06:05:03 GMT</pubDate>
<guid>http://snipplr.com/view/57232/scroll-vertical-lento-jquery/</guid>
</item>
<item>
<title>(jQuery) SCroll top and popup center - mariraj</title>
<link>http://snipplr.com/view/56268/scroll-top-and-popup-center/</link>
<description><![CDATA[ <p>Popup center and scroll top script</p> ]]></description>
<pubDate>Fri, 08 Jul 2011 00:26:18 GMT</pubDate>
<guid>http://snipplr.com/view/56268/scroll-top-and-popup-center/</guid>
</item>
<item>
<title>(CSS) No horizontal scrollbar for web page - studioevoque</title>
<link>http://snipplr.com/view/55269/no-horizontal-scrollbar-for-web-page/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Wed, 15 Jun 2011 22:24:52 GMT</pubDate>
<guid>http://snipplr.com/view/55269/no-horizontal-scrollbar-for-web-page/</guid>
</item>
<item>
<title>(jQuery) jQuery Auto-Scroll on div - ryarwood</title>
<link>http://snipplr.com/view/55066/jquery-autoscroll-on-div/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 09 Jun 2011 05:45:35 GMT</pubDate>
<guid>http://snipplr.com/view/55066/jquery-autoscroll-on-div/</guid>
</item>
<item>
<title>(JavaScript) Disbable UIWebView scroll (Javascript) - rabc</title>
<link>http://snipplr.com/view/54859/disbable-uiwebview-scroll-javascript/</link>
<description><![CDATA[ <p>Disable using Javascript.</p> ]]></description>
<pubDate>Sat, 04 Jun 2011 05:15:04 GMT</pubDate>
<guid>http://snipplr.com/view/54859/disbable-uiwebview-scroll-javascript/</guid>
</item>
<item>
<title>(Objective C) Disbable UIWebView scroll (Objective-C) - rabc</title>
<link>http://snipplr.com/view/54858/disbable-uiwebview-scroll-objectivec/</link>
<description><![CDATA[ <p>Disbable by code. I don't know if Apple reject this.</p> ]]></description>
<pubDate>Sat, 04 Jun 2011 05:14:12 GMT</pubDate>
<guid>http://snipplr.com/view/54858/disbable-uiwebview-scroll-objectivec/</guid>
</item>
<item>
<title>(Other) jquery scrolling - griffpup</title>
<link>http://snipplr.com/view/54645/jquery-scrolling/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Tue, 31 May 2011 22:28:05 GMT</pubDate>
<guid>http://snipplr.com/view/54645/jquery-scrolling/</guid>
</item>
<item>
<title>(jQuery) Scroll Page Horizontally With Mouse Wheel - dubogii</title>
<link>http://snipplr.com/view/53667/scroll-page-horizontally-with-mouse-wheel/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Tue, 17 May 2011 19:42:52 GMT</pubDate>
<guid>http://snipplr.com/view/53667/scroll-page-horizontally-with-mouse-wheel/</guid>
</item>
</channel>
</rss>