Tags

, , , , , , ,

If you thought Cascading Style Sheets (CSS) were just for formatting font colors and wireframes, you need to check these sites out:
http://css-tricks.com/fancy-scrolling-sites/

The link above is a great source for web design inspiration!  Most require the use of CSS and Javascript to accomplish the effect.
For example, you can use an event listener to detect when the visitor scrolls:

<script> $(window).scroll(function () { //You can see how many pixels from the top the visitor scrolled: $('p').text("You have scrolled " + $(window).scrollTop() + " pixels"); }); </script>

Toodaloo.