Home

Awesome

fullpage

for desktop(ie5.5+) and mobile

You can use it for creating your personal pages and webApp.

Without jQuery.Less than 9KB.

兼容桌面端(ie5.5+) 和 手机端

你可以用它来构建你的个人主页或者网页应用

这是一个不使用jQuery小巧的框架 不到9KB

This is a Demo.

Here are some examples which use fullpage.

PC Mobile

Enjoy!

Usage

Fullpage only needs to follow a simple pattern. Here is an example:

<div id="pageContain">	
	<div class="page page1 current">
		<div class="contain">
			<!-- your own code here-->
		</div>
	</div>
    <!-- ect.. -->
</div>

<!--alternative-->
<ul id="navBar">
	<li>0</li>
	<!-- ect.. -->
</ul>
<!--alternative-->

Above is the initial required structure– a series of elements wrapped in two containers. Place any content you want within the items. The containing div will need to be passed to the Fullpage function like so:


runPage = new FullPage({
	id : 'pageContain',                            // id of contain
	slideTime : 800,                               // time of slide(ms)
  continuous true,                               // create an infinite feel with no endpoints
    effect : {                                   // slide effect
        transform : {							     // tranform
        	translate : 'Y',					   // 'X'|'Y'|'XY'|'none'
        	scale : [.1, 1],					   // [scalefrom, scaleto]
        	rotate : [90, 0]					   // [rotatefrom, rotateto]
        },                  					   
        opacity : [0, 1]               // [opacityfrom, opacityto]
    },                           
	mode : 'wheel,touch,nav:navBar',     // mode of fullpage
	easing : 'ease'                      // easing('ease','ease-in','ease-in-out' or use 
                                       // cubic-bezier like [.33, 1.81, 1, 1])
    //  callback : function(index, thisPage) {     // callback when pageChange
        
    //  }
});

I always place this at the bottom of the page, externally, to verify the page is ready.

设置

Fullpage API

Fullpage exposes a few functions that can be useful for script control of your pages.

prev() slide to prev

next() slide to next

thisPage() returns current page position

go(num) slide to set page position (num:the page you want to slide to)

接口

Fullpage也提供了一些借口供使用此插件的开发者调用:

prev() 直接滑向上一页

next() 直接滑入下一页

thisPage() 返回当前的页码

go(num) 直接滑到第num页