全屏滚动页面(带箭头翻页)(fullPage.js插件)(滚屏翻页)

北城以北 提交于 2020-03-05 23:52:20

下载插件的网站及查看演示:
在此网站下载插件.

加入箭头使得点击箭头翻到下一页:

html:

<div class="arrow "></div>

css:

.arrow {
    opacity: 1;
    animation: arrow 3s cubic-bezier(.5,0,.1,1) infinite;
    -webkit-animation: arrow 3s cubic-bezier(.5,0,.1,1) infinite;
    position: absolute;
    top: 30px;
    left: 50%;
    margin-left: -30px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    cursor: pointer;
    background-image: url(/images/down.png);/* 这里放箭头图片路径 */
    background-repeat: no-repeat;
    background-size: 100%;
}

js:

$('.arrow').click(function () {
	$.fn.fullpage.moveSectionDown();
});
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!