HTML5技术

凛冬将至,用几款特效暖暖身 - 请叫我头头哥(3)

字号+ 作者:H5之家 来源:博客园 2015-11-10 10:20 我要评论( )

博客园请叫我头头哥,博客园 博客园创建于2004年1月,博客园诞生于江苏扬州这样一个IT非常落后的小城市,城市虽小,但是这里却有很多求知创新的人,博客园诞生的理由是如此简单。 一个IT技术人员想为IT技术人员们提

博客园请叫我头头哥,博客园 博客园创建于2004年1月,博客园诞生于江苏扬州这样一个IT非常落后的小城市, 城市虽小,但是这里却有很多求知创新的人,博客园诞生的理由是如此简单。 一个IT技术人员想为IT技术人员们提供一个纯净的技术交流空间,博客园很长时间只有一个不能再简单的博客, 有近四年,博客园仅靠一个人几年工作的积蓄在维持,互联网浪潮的此起彼伏,“博客”从耀眼的明星成为平民 ,这些似乎都与博客园无关,博客园一步一个脚印地走着自己的路,傻傻地对每个用户注册进行人工审批、 对首页内容宁缺毋滥、对不合适的广告拒之门外,傻傻地对用户体验关怀备至,对盈利模式冷若冰霜。 发展历程2006年9月 博客园到北京发展。2007年9月 博客园来到上海发展。2008年3月 博客园团队成立。看看博客园

5.2.css代码: 

.curtains>li { background:#FFF url(../img/blizzard.png); box-shadow:0 0 12px #666; } .curtains>li:last-child{box-shadow:none} #menu{ position:fixed; top:20px; left:20px; z-index:20; padding:10px; background-color:#000; } #menu li{margin:0} #menu a{ margin:0; color:#FFF; } #section-1 { background: url(../img/eiffel-2.jpg) 50% 0 no-repeat; background-size: cover; } #section-1 header{ color:#FFF; position:absolute; top:30%; left:50%; margin:0 0 0 -350px; width:700px; text-align:center; text-shadow: 0 1px 1px rgba(0, 0, 0, .5); line-height:1.1; } #section-1 h1{ font-size:120px; } #section-1 h2{ text-transform:capitalize; opacity:.75; font-size:48px; }

5.3.js代码: 

scrollToPosition: function (direction) { var position = null, self = this; if (self.scrollEl.is(':animated')) { return false; } if (direction === 'up' || direction == 'down') { $next = (direction === 'up') ? self.$current.prev() : self.$current.next(); (self.$step) { if (!self.$current.find('.current-step').length) { self.$step.eq(0).addClass('current-step'); } var $nextStep = (direction === 'up') ? self.$current.find('.current-step').prev('.step') : self.$current.find('.current-step').next('.step'); if ($nextStep.length) { position = (self.options.mobile) ? $nextStep.position().top + self.$elDatas[self.$current.index()]['data-position'] : $nextStep.position().top + self.$elDatas[self.$current.index()]['data-position']; } } position = position || ((self.$elDatas[$next.index()] === undefined) ? null : self.$elDatas[$next.index()]['data-position']); if (position !== null) { self.scrollEl.animate({ scrollTop: position }, self.options.scrollSpeed, self.options.easing); } } else if (direction === 'top') { self.scrollEl.animate({ scrollTop: 0 }, self.options.scrollSpeed, self.options.easing); } else if (direction === 'bottom') { self.scrollEl.animate({ scrollTop: self.options.bodyHeight }, self.options.scrollSpeed, self.options.easing); } else { var index = $("#" + direction).index(), speed = Math.abs(self.currentIndex - index) * (this.options.scrollSpeed * 4) / self.$liLength; self.scrollEl.animate({ scrollTop: self.$elDatas[index]['data-position'] || null }, (speed <= self.options.scrollSpeed) ? self.options.scrollSpeed : speed, this.options.easing); } }

5.4.代码效果: 

web 前端特效

5.5.源码下载: 

https://github.com/toutouge/WebProject/tree/master/SpecialPage

v6.0博客总结

关于第一波特效就这么多,如果大家觉得可以就点个赞,后续我再考虑是否继续追加。

在北京的小伙伴们要做好防寒工作了,北京上周已经下雪了。上周五那家伙早上一起床,窗外全白花花的。

web 前端特效

PS:北京的确雾霾多,但是照片里雾蒙蒙的效果不是雾霾,只是我早上醒的早,早上的时候拍的。

 

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
  • CSS 几款比较常用的翻转特效 - 周全535201285

    CSS 几款比较常用的翻转特效 - 周全535201285

    2017-02-06 16:00

  • Jquery实现的几款漂亮的时间轴 - 一个北漂的女孩

    Jquery实现的几款漂亮的时间轴 - 一个北漂的女孩

    2017-01-23 10:03

  • JS组件系列——Bootstrap组件福利篇:几款好用的组件推荐(二) - 懒得安分

    JS组件系列——Bootstrap组件福利篇:几款好用的组件推荐(二) - 懒

    2016-07-14 15:00

  • JS组件系列——Bootstrap组件福利篇:几款好用的组件推荐 - 懒得安分

    JS组件系列——Bootstrap组件福利篇:几款好用的组件推荐 - 懒得安分

    2016-06-25 16:00

网友点评