当前位置: 首页 > web >正文

fullPage.js 学习

话说一直很喜欢一页滚动的那种页面啊= =感觉好棒

下面来说说fullPage.js这个插件  网址:http://alvarotrigo.com/fullPage/  我也就按照那个demo来做一遍而已~

可以自己下载看看说明吧。

http://fullpagestudy.sinaapp.com/ 

案例demo

案例demo2     < _ <  这个花了我最久时间

案例demo3

PS 补充下~下面是最简单的最初始的demo,在后面还做了很多的修改,例如翻页的效果,还有加载页面时候元素的飞入以及移除页面时候元素的飞出等等效果~
这就考虑到后面说的那几个fullpage里面的方法:
onLeave: function(index, direction){},afterLoad: function(anchorLink, index){},afterRender: function(){},afterResize: function(){},afterSlideLoad: function(anchorLink, index, slideAnchor, slideIndex){},onSlideLeave: function(anchorLink, index, slideIndex, direction){}




<!DOCTYPE html>
<html><head><meta charset="utf-8"/><title>fullPage</title><link rel="stylesheet" type="text/css" href="../jquery.fullPage.css" /><link rel="stylesheet" type="text/css" href="mypage.css" /><script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script><script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.1/jquery-ui.min.js"></script><script type="text/javascript" src="../jquery.fullPage.js"></script><script type="text/javascript">$(document).ready(function(){$('fullpage').fullpage({slidesColor: ['#1bbc9b', '#4BBFC3', '#7BAABE', 'whitesmoke', '#ccddff'],anchors: ['firstPage', 'secondPage', '3rdPage', '4thpage', 'lastPage'],menu: '#menu'});});</script></head><body><ul id="menu"><li data-menuanchor="firstPage"><a href="#firstPage">First slide</a></li><li data-menuanchor="secondPage"><a href="#secondPage">Second slide</a></li><li data-menuanchor="3rdPage"><a href="#3rdPage">Third slide</a></li><li data-menuanchor="4thpage"><a href="#4thpage">Fourth slide</a></li></ul><div id="fullpage"><div class="section " id="section0"><h1>fullPage.js</h1><p>Create Beautiful Fullscreen Scrolling Websites</p><img src="imgs/fullPage.png" alt="fullPage" /></div><div class="section" id="section1"><div class="slide"><div class="intro"><h1>Create Sliders</h1><p>Not only vertical scrolling but also horizontal scrolling. With fullPage.js you will be able to add horizontal sliders in the most simple way ever.</p><img src="imgs/slider.png" alt="slider" /></div></div><div class="slide"><div class="intro"><img src="imgs/1.png" alt="simple" /><h1>Simple</h1><p>Easy to use. Configurable and customizable.</p></div></div><div class="slide"><div class="intro"><img src="imgs/2.png" alt="Cool" /><h1>Cool</h1><p>It just looks cool. Impress everybody with a simple and modern web design!</p></div></div><div class="slide"><div class="intro"><img src="imgs/3.png" alt="Compatible" /><h1>Compatible</h1><p>Working in modern and old browsers too! IE 8 users don't have the fault of using that horrible browser! Lets give them a chance to see your site in a proper way!</p></div></div></div><div class="section" id="section2"><div class="intro"><h1>Example</h1><p>HTML markup example to define 4 sections.</p><img src="imgs/example2.png" alt="example" /></div></div><div class="section" id="section3"><div class="intro"><h1>Working On Tablets</h1><p>Designed to fit to different screen sizes as well as tablet and mobile devices.<br /><br /><br /><br /><br /><br /></p></div><img src="imgs/tablets.png" alt="tablets" /></div></div></body>
</html>


嗯哼,上面很简单的html布局,我们用div来包裹整个文件,然后里面需要class="section"的部分
大体的结果就是
<div id="fullpage"><div class="section"></div><div class="section"></div><div class="section"></div>
</div>

然后里面就可以放自己想要放的东西啦,没什么好说的

另外在开头部分我们也放了导航条
<ul id="menu"><li data-menuanchor="firstPage"><a href="#firstPage">First slide</a></li><li data-menuanchor="secondPage"><a href="#secondPage">Second slide</a></li><li data-menuanchor="3rdPage"><a href="#3rdPage">Third slide</a></li><li data-menuanchor="4thpage"><a href="#4thpage">Fourth slide</a></li>
</ul>

这个部分是用来定义导航的,关于data的可以到http://ejohn.org/blog/html-5-data-attributes/看看,自定义的属性吧~

唉,接下来就可以弄我们的js了
<script type="text/javascript">$(document).ready(function(){$('fullpage').fullpage({slidesColor: ['#1bbc9b', '#4BBFC3', '#7BAABE', 'whitesmoke', '#ccddff'],anchors: ['firstPage', 'secondPage', '3rdPage', '4thpage', 'lastPage'],menu: '#menu'});});
</script>
挺简单的,在jquery里面先通过id找到fullpage,然后一般用$('fullpage').fullpage();就可以把效果弄出来了
而下面的就是通过json格式来分别设定了slidesColor,每个页面的颜色    anchors 这个就是对应于data-menuanchor的属性了 最后的menu属性就是对于导航的id属性

到这里我们基本就搞定了可以翻滚的页面了,最核心但是不麻烦的地方就搞定了啦。
fullpage里面的属性真的好多,还有函数,具体可以下载这个框架,然后查看里面的readme进一步学习咯。下面先来预览下:
$(document).ready(function() {$('#fullpage').fullpage({verticalCentered: true,resize : true,slidesColor : ['#ccc', '#fff'],anchors:['firstSlide', 'secondSlide'],scrollingSpeed: 700,easing: 'easeInQuart',menu: false,navigation: false,navigationPosition: 'right',navigationTooltips: ['firstSlide', 'secondSlide'],slidesNavigation: true,slidesNavPosition: 'bottom',loopBottom: false,loopTop: false,loopHorizontal: true,autoScrolling: true,scrollOverflow: false,css3: false,paddingTop: '3em',paddingBottom: '10px',fixedElements: '#element1, .element2',normalScrollElements: '#element1, .element2',keyboardScrolling: true,touchSensitivity: 15,continuousVertical: false,animateAnchor: true,//eventsonLeave: function(index, direction){},afterLoad: function(anchorLink, index){},afterRender: function(){},afterResize: function(){},afterSlideLoad: function(anchorLink, index, slideAnchor, slideIndex){},onSlideLeave: function(anchorLink, index, slideIndex, direction){}});
});

接下来我们来设置设置下样式
前面这部分算是reset.css的吧~热下身~熟悉的话可以无视掉

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,
form,fieldset,input,textarea,p,blockquote,th,td {padding: 0;margin: 0;
}
a{text-decoration:none;
}
table{border-spacing:0;
}
fieldset,img {border: 0;
}
address,caption,cite,code,dfn,em,strong,th,var {font-weight: normal;font-style: normal;
}
strong{font-weight: bold;
}
ol,ul {list-style: none;margin:0;padding:0;
}
caption,th {text-align: left;
}
h1,h2,h3,h4,h5,h6 {font-weight: normal;font-size: 100%;margin:0;padding:0;color:#444;
}
q:before,q:after {content:'';
}
abbr,acronym { border: 0;
}


呐,接下来给出针对这个案例的css(刚csdn博客挂了摔!
body{font-family: arial,helvetica;color: #333;color: rgba(0,0,0,0.5);
}
h1{font-size:6em;
}
p{font-size:2em;
}
.intro p{width:50%;margin:0 auto;font-size:1.5em;
}
.section{text-align:center;
}#menu{position:fixed;top:0;left:0;z-index:70;height:0;width:100%;padding:0;margin:0;
}
#menu li{display:inline-block;margin:10px;color:#000;background:#fff;background:rgba(255,255,255,0.5);-webkit-border-radius:10px;border-radius:10px;-webkit-transition: all 0.2s ease-in;-moz-transition:all 0.2s ease-in;-o-transition: all 0.2s ease-in;transition: all 0.2s ease-in;
}
#menu li.active{background:#666;background:rgba(0,0,0,0.5);color:#fff;
}
#menu li a{text-decoration:none;color:#000;-webkit-transition: all 0.2s ease-in;-moz-transition:all 0.2s ease-in;-o-transition: all 0.2s ease-in;transition: all 0.2s ease-in;
}
#menu li.active a:hover{color: #000;
}
#menu li:hover{background: rgba(255,255,255, 0.8);
}
#menu li a,
#menu li.active a{padding: 9px 18px;display:block;
}
#menu li.active a{color: #fff;
}
..上面其实也都很简单啦 不多说了 在原有案例上我加入了transition 让那些页面跳转的指示更加缓和,关于transition可以看看 

Understanding CSS3 Transitions http://alistapart.com/article/understanding-css3-transitions 

最后再改改图片的位置,没什么好说的啦,案例就到这里了
<style type="text/css">#section0 img,#section1 img{margin: 20px 0 0 0;}	#section2 img{margin: 20px 0 0 52px;	}#section3 img{bottom: 0px;position: absolute;margin-left: -420px;}.intro p{width: 50%;margin: 0 auto;font-size: 1.5em;}</style>

对了,最后说说那个滑动的吧
<div class="section"><div class="slide"></div><div class="slide"></div><div class="slide"></div>
</div>

也是很简单的啦~
然后最后也在fullPage里面加入了
loopBottom:true,
loopTop:true
这样就可以循环了~~

http://www.xdnf.cn/news/11154.html

相关文章:

  • superoneclick 2.2_2.2.1定量遥感综述
  • 局域网有一台计算机网络慢,局域网网速变慢的五种解决办法
  • 量化交易:Dual Thrust策略
  • Linux入门教程(非常详细)从零基础入门到精通,看完这一篇就够了
  • 【容器云】传统金融企业的 Docker 实践
  • u盘写保护怎么去掉?怎么解除写保护?4个方法能用!
  • 网站监控有什么用,什么是网站监控?
  • 2024年最新程序员接私活渠道大全,分分钟让你月入30k!
  • Moblin项目 - Moblin安全性
  • oracle 中的exception
  • 逻辑智力测试题
  • ps如何“移花接木”,有什么相关教程吗
  • Flash Builder 4的快捷方式和调试技巧
  • IOS和安卓ui设计常用尺寸及基本知识
  • 第三代搜索引擎何去何从?
  • IT行业职场走向,哪些方向更有就业前景?——IT行业的发展现状及趋势探析
  • 网卡设置 网卡的高级设置说明
  • ARM Cortex A8、A9以及高通Scorpion处理器详解
  • 网站设计从入门到精通,5个步骤助您轻松设计网站
  • 钱小样经典语录。
  • 计算机病毒分类
  • 每天CSS学习之border-collapse
  • Windows及Linux下tftp服务安装及使用
  • 分享74个ASP整站程序源码,总有一款适合您
  • ISA Server 2006的部署与应用
  • [美国]《美国队长2》[BD-MKV.720p.国英双语.中英双字][2014年高分科幻动作]
  • php怎么卸载_如何完全删除或卸载PHPnow PHP环境配置包(图解)
  • 网页游戏外挂的设计与编写:QQ摩天大楼【一】(基本技术)
  • 深入解析Java11核心新特性
  • 电脑蓝屏的错误代码含义