leifmarcus / lukescroll

scrolling like starwars would do

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Luke Scroll

scrolling like starwars would do

How to use in HTML

<div class="container">
  <div class="perspective">
    <div class="scroller">
    	<!-- all content goes here --> 
    </div>
    <div class="edge"></div>
  </div>
</div>

how to start

window.onload = function()
{
  lukescroll(
  {
    ...config object
  } );
};

how to css

.container
{
    width: 100%;
    height: 100%;
    position: absolute;
    ...
}
.perspective
{
    position         : fixed;
    top              : 0px;
    overflow         : hidden;
}



/* the scrolling element */
.scroller
{
    padding-top : 100px;
    position    : relative;
    text-align  : justify;
}

About

scrolling like starwars would do


Languages

Language:JavaScript 52.2%Language:HTML 35.1%Language:CSS 12.7%