博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
各种动效收集
阅读量:6688 次
发布时间:2019-06-25

本文共 1692 字,大约阅读时间需要 5 分钟。

一、<a>标签锚点点击滑动到对应位置(基于jq)

$('a[href*=#],area[href*=#]').click(function() {          console.log(this.pathname)          if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') && location.hostname == this.hostname) {              var $target = $(this.hash);              $target = $target.length && $target || $('[name=' + this.hash.slice(1) + ']');              if ($target.length) {                  var targetOffset = $target.offset().top-50;                  $('html,body').animate({                              scrollTop: targetOffset                          },                          1000);                  return false;              }          }      });

二、图片呼吸动态效果(CSS3)

定义效果:

@mixin animation( $name, $duration, $timing, $delay, $count ) {
animation-name: $name;animation-duration: $duration;animation-timing-function: $timing;animation-delay: $delay;animation-iteration-count: $count;-webkit-animation-name: $name;-webkit-animation-duration: $duration;-webkit-animation-timing-function: $timing;-webkit-animation-delay: $delay;-webkit-animation-iteration-count: $count;}@keyframes breath {
0% {transform: scale(1);-webkit-transform: scale(1);}50% {
transform: scale(1.5);-webkit-transform: scale(1.5);}100% {
transform: scale(1);-webkit-transform: scale(1);}}@-webkit-keyframes breath {
0% {transform: scale(1);-webkit-transform: scale(1);}50% {
transform: scale(1.5);-webkit-transform: scale(1.5);}100% {
transform: scale(1);-webkit-transform: scale(1);}}

在需要该效果的地方引用该CSS

img{
width: 100%; @include animation(breath, 2s, linear, 0s, infinite); }

 

转载于:https://www.cnblogs.com/zhengweijie/p/7111882.html

你可能感兴趣的文章
拿什么拯救你——王阿姨的少女心!
查看>>
共享单车步入物联网军备战
查看>>
斯坦福 CS183c 闪电式扩张(Blitzscaling)中文笔记
查看>>
MySQL时间戳与日期互转
查看>>
摘下月亮送给爱人?AstroReality用AR技术帮你实现
查看>>
PHP 魔术变量
查看>>
推荐的PHP编码规范
查看>>
从Linley Group预测报告看物联网四大趋势
查看>>
【AI科幻】地球陨落·真相(中)
查看>>
Gartner报告:东方金信进入Hadoop世界厂商名录
查看>>
参加2017开放数据中心峰会,探2020数据中心网络十大热点问题
查看>>
Python_(1)数据类型及其常见使用方法(图文)
查看>>
如何查看WWN号
查看>>
主页被劫持问题
查看>>
linux中awk学习小结
查看>>
MySQL主从的一致性校验及修复
查看>>
Skype For Business 2015实战系列5:安装后端数据库
查看>>
Microsoft Security Essentials 中文版正式发布
查看>>
JSF Note
查看>>
自定义支持多行显示的RadioGroup
查看>>