基于javascript实现漂亮的页面过渡动画效果附源码下载


Posted in Javascript onOctober 26, 2015

用户通过点击页面左侧的菜单,对应的页面加载时伴随着滑动过滤动画,并带有进度条效果。当然页面的加载是Ajax驱动的,整个加载过渡过程非常流畅,非常好的用户体验。

HTML

HTML结构中,.cd-main包含页面主体内容,.cd-side-navigation包含着侧边导航条,#cd-loading-bar则是用来做进度条动画用的。

<nav class="cd-side-navigation"> 
  <ul> 
    <li> 
      <a href="index.html" class="selected" data-menu="index"> 
        <svg><!-- svg content here --></svg> 
        Intro 
      </a> 
    </li> 
    <li> 
      <!-- ... --> 
    </li> 
    <!-- other list items here --> 
  </ul> 
</nav> <!-- .cd-dashboard --> 
<main class="cd-main"> 
  <section class="cd-section index visible"> 
    <header> 
      <div class="cd-title"> 
        <h2>Animated Page Transition #2</h2> 
        <span>Some text here</span> 
      </div> 
      <a href="#index-content" class="cd-scroll">Scroll Down</a> 
    </header> 
    <div class="cd-content" id="index-content"> 
      <!-- content here --> 
    </div> <!-- .cd-content --> 
  </section> <!-- .cd-section --> 
</main> <!-- .cd-main --> 
<div id="cd-loading-bar" data-scale="1" class="index"></div> <!-- lateral loading bar -->

CSS

我们将.cd-side-navigation固定在页面左侧,并且设置它的高度为100%,这样左侧导航菜单就始终占据左侧边栏,右侧主体内容滚动时,左侧导航菜单不动。

.cd-side-navigation { 
 position: fixed; 
 z-index: 3; 
 top: 0; 
 left: 0; 
 height: 100vh; 
 width: 94px; 
 overflow: hidden; 
} 
.cd-side-navigation ul { 
 height: 100%; 
 overflow-y: auto; 
} 
.cd-side-navigation::before { 
 /* background color of the side navigation */ 
 content: ''; 
 position: absolute; 
 top: 0; 
 left: 0; 
 height: 100%; 
 width: calc(100% - 4px); 
 background-color: #131519; 
} 
.cd-side-navigation li { 
 width: calc(100% - 4px); 
} 
.cd-side-navigation a { 
 display: block; 
 position: relative; 
} 
.cd-side-navigation a::after { 
 /* 4px line to the right of the item - visible on hover */ 
 content: ''; 
 position: absolute; 
 top: 0; 
 right: -4px; 
 height: 100%; 
 width: 4px; 
 background-color: #83b0b9; 
 opacity: 0; 
} 
.no-touch .cd-side-navigation a:hover::after { 
 opacity: 1; 
}

JavaScript

当我们点击左侧菜单时,调用triggerAnimation()函数,这个函数会触发加载进度条动画函数loadingBarAnimation(),接着加载页面内容函数:loadNewContent()。

function loadingBarAnimation() { 
  var scaleMax = loadingBar.data('scale'); 
  if( scaleY + 1 < scaleMax) { 
    newScaleValue = scaleY + 1; 
  } 
  // ... 
   
  loadingBar.velocity({ 
    scaleY: newScaleValue 
  }, 100, loadingBarAnimation); 
}

当新页面被选中时,一个新的元素.cd-section将会被创建并且插入到DOM中,然后load()新的url内容。

function loadNewContent(newSection) { 
  var section = $('<section class="cd-section overflow-hidden '+newSection+'"></section>').appendTo(mainContent); 
   
  //load the new content from the proper html file 
  section.load(newSection+'.html .cd-section > *', function(event){ 
     
    loadingBar.velocity({ 
      scaleY: scaleMax //this is the scaleY value to cover the entire window height (100% loaded) 
    }, 400, function(){ 
       
      section.addClass('visible'); 
 
      var url = newSection+'.html'; 
 
      if(url!=window.location){ 
        //add the new page to the window.history 
        window.history.pushState({path: url},'',url); 
      } 
 
      // ... 
    }); 
  }); 
}

通过异步加载的页面要返回上一页历史浏览记录的话,可以点击浏览器上的返回即可。返回上一页同样有过渡动画效果。

Javascript 相关文章推荐
JavaScript 学习笔记(十四) 正则表达式
Jan 22 Javascript
jQuery实现列表的全选功能
Mar 18 Javascript
jQuery在线选座位插件seat-charts特效代码分享
Aug 27 Javascript
详解JavaScript中常用的函数类型
Nov 18 Javascript
bootstrap监听滚动实现头部跟随滚动
Nov 08 Javascript
Angular中实现树形结构视图实例代码
May 05 Javascript
原生js简单实现放大镜特效
May 16 Javascript
three.js实现3D视野缩放效果
Nov 16 Javascript
第一个Vue插件从封装到发布
Nov 22 Javascript
使用Vue-cli 3.0搭建Vue项目的方法
Jun 07 Javascript
node爬取新型冠状病毒的疫情实时动态
Feb 06 Javascript
解决VUE自定义拖拽指令时 onmouseup 与 click事件冲突问题
Jul 24 Javascript
JS实现的页面自定义滚动条效果
Oct 26 #Javascript
JS实现的鼠标跟随代码(卡通手型点击效果)
Oct 26 #Javascript
JS响应鼠标点击实现两个滑块区间拖动效果
Oct 26 #Javascript
javaScript实现可缩放的显示区效果代码
Oct 26 #Javascript
JS基于VML技术实现的五角星礼花效果代码
Oct 26 #Javascript
jquery获取url参数及url加参数的方法
Oct 26 #Javascript
JavaScritp添加url参数并将参数加入到url中及更改url参数的方法
Oct 26 #Javascript
You might like
随机广告显示(PHP函数)
2006/10/09 PHP
IIS6.0 开启Gzip方法及PHP Gzip函数分享
2014/06/08 PHP
javascript+php实现根据用户时区显示当地时间的方法
2015/03/11 PHP
php输出含有“#”字符串的方法
2017/01/18 PHP
laravel框架实现后台登录、退出功能示例
2019/10/31 PHP
javascript 仿QQ滑动菜单效果代码
2010/09/03 Javascript
解析Jquery取得iframe中元素的几种方法
2013/07/04 Javascript
CheckBoxList多选样式jquery、C#获取选择项
2013/09/06 Javascript
jquery更换文章内容与改变字体大小代码
2013/09/30 Javascript
深入理解javascript的执行顺序
2014/04/04 Javascript
详解JavaScript中数组的相关知识
2015/07/29 Javascript
JavaScript实现99乘法表及隔行变色实例代码
2016/02/24 Javascript
jQuery封装的屏幕居中提示信息代码
2016/06/08 Javascript
JavaScript提升性能的常用技巧总结【经典】
2016/06/20 Javascript
ReactNative列表ListView的用法
2017/08/02 Javascript
js中document.write和document.writeln的区别
2018/03/11 Javascript
解决node修改后需频繁手动重启的问题
2018/05/13 Javascript
js+html5实现手机九宫格密码解锁功能
2018/07/30 Javascript
详解小程序云开发数据库
2019/05/20 Javascript
使用JavaScript计算前一天和后一天的思路详解
2019/12/20 Javascript
vue 数据双向绑定的实现方法
2021/03/04 Vue.js
[05:40]DOTA2荣耀之路6:Wings最后进攻
2018/05/30 DOTA
Python set常用操作函数集锦
2017/11/15 Python
Python实现屏幕截图的两种方式
2018/02/05 Python
Python实现一个优先级队列的方法
2020/07/31 Python
html5的canvas方法使用指南
2014/12/15 HTML / CSS
乐高西班牙官方商店:LEGO Shop ES
2019/12/01 全球购物
戴尔新加坡官网:Dell Singapore
2020/12/13 全球购物
关于工资低的辞职信
2014/01/14 职场文书
母婴店促销方案
2014/03/05 职场文书
事假请假条范文
2014/04/11 职场文书
大专毕业生求职信
2014/07/05 职场文书
2014年后勤管理工作总结
2014/12/01 职场文书
毕业赠语大全
2015/06/23 职场文书
浅谈 JavaScript 沙箱Sandbox
2021/11/02 Javascript
关于CSS自定义属性与前端页面的主题切换问题
2022/03/21 HTML / CSS