js定时器+简单的动画效果实例


Posted in Javascript onNovember 10, 2017

1.向下滑动

<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="UTF-8">
 <title>向下滑动</title>
 <style>
  body {
   margin: 0px;
  }
  #show {
   width: 200px;
   /* 高度为 0 */
   height: 100px;
   background-color: lightcoral;
   margin: 0 auto;
   /* 设置为隐藏 */
   /*display: none;*/
  }

 </style>
</head>
<body>
<div id="show"></div>
<script>
 var show = document.getElementById('show');
 /*show.style.display = 'block';

 var t = setInterval(function(){
  var style = window.getComputedStyle(show,null);
  var height = parseInt(style.height);
  // 判断当前的高度是否为 400
  if (height >= 400){
   clearInterval(t);
  } else {
   height++;
   show.style.height = height + 'px';
  }
 },50);*/

 slideDown(show,400);

 /*
  将上述实现的向下滑动效果,封装在一个固定的函数中
  * 设计当前实现向下滑动效果函数的形参
   * elem - 表示实现向下滑动效果的元素
   * maxHeight - 表示元素向下滑动的最大高度值
  * 函数的逻辑与默认设置CSS样式属性的值无关
  */
 function slideDown(elem, maxHeight){
  // 操作的元素默认的display值为none
  elem.style.display = 'block';
  elem.style.height = '0px';

  var t = setInterval(function(){
   var style = window.getComputedStyle(elem,null);
   var height = parseInt(style.height);
   // 判断当前的高度是否为 400
   if (height >= maxHeight){
    clearInterval(t);
   } else {
    height++;
    elem.style.height = height + 'px';
   }
  },50);
 }


</script>
</body>
</html>

2.移动效果

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>移动效果</title>
  <style>
    body {
      margin: 0px;
    }
    #box {
      width: 100px;
      height: 100px;
      background-color: lightcoral;

      position: absolute;
      left: 100px;
      top: 100px;
    }
  </style>
</head>
<body>
<div id="box"></div>
<script>
  var box = document.getElementById('box');
  box.onclick = function(){
    clearInterval(t);
  }
  /*
    * 向右移动
     * 当前元素移动到页面的最右边时 -> 向左移动
    * 向左移动
     * 当前元素移动到页面的最左边时 -> 向右移动
   */
  var flag = false;// 默认表示向右
  var speed = 1;// 表示每次变化的值
  t = setInterval(function(){
    //speed += 0.01;
    // 获取当前页面的宽度
    var WIDTH = window.innerWidth;
    var style = window.getComputedStyle(box,null);
    var left = parseInt(style.left);
    var width = parseInt(style.width);
    // 判断当前元素移动的方向
    if (flag){// 向左移动
      left -= speed;
    } else {// 向右移动
      left += speed;
    }
    // 判断什么情况下,向左移动;判断什么情况下,向右移动
    if ((left + width) >= WIDTH){// 向左移动
      flag = true;
    } else if (left <= 0){// 向右移动
      flag = false;
    }
    box.style.left = left + 'px';
  },10);

</script>
</body>
</html>

3.事件与动画结合

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>事件与动画结合</title>
  <style>
    body {
      margin: 0px;
    }
  </style>
</head>
<body>
<script>
  // 获取<body>元素
  var body = document.body;
  // 当页面加载完毕后,设置当前<body>元素的高度为当前浏览器窗口的高度
  window.onload = function(){
    setHeight(body);
  };
  // 当用户改变浏览器窗口的大小时,重新设置<body>元素的高度(等于当前窗口的高度)
  window.onresize = function(){
    setHeight(body);
  };
  // 定义函数 - 设置<body>元素的高度等于当前窗口的高度
  function setHeight(elem){
    elem.style.height = window.innerHeight + 'px';
  }

  var width = 100,height = 100;
  // 为<body>元素绑定click事件
  body.onclick = function(event){
    var x = event.clientX;
    var y = event.clientY;
    // 创建<div>元素,显示的位置在鼠标当前的坐标值
    var div = document.createElement('div');
    div.setAttribute('class','circle');
    body.appendChild(div);
    // rgb(0,0,0)格式 -> 颜色随机
    var r = parseInt(Math.random()*255);
    var g = parseInt(Math.random()*255);
    var b = parseInt(Math.random()*255);

    div.style.width = width + 'px';
    div.style.height = height + 'px';
    div.style.backgroundColor = 'rgb('+r+','+g+','+b+')';
    div.style.borderRadius = '50%';
    div.style.opacity = 1;
    div.style.position = 'absolute';
    div.style.left = x - width/2 + 'px';
    div.style.top = y - height/2 + 'px';

    animate(div);
  }
  // 定义函数 -> 实现动画效果
  function animate(elem){
    var style = window.getComputedStyle(elem,null);
    /*var width = parseInt(style.width);
    var height = parseInt(style.height);
    var left = parseInt(style.left);
    var top = parseInt(style.top);
    width++;
    height++;
    elem.style.width = width + 'px';
    elem.style.height = height + 'px';
    elem.style.left = (left - 0.5) + 'px';
    elem.style.top = (top - 0.5) +'px';*/

    var opacity = style.opacity;

    if (opacity <= 0){
      clearTimeout(t);
      // 删除当前元素
    }

    opacity -= 0.01;
    elem.style.opacity = opacity;

    // 设定定时器
    var t = setTimeout(function(){
      animate(elem);
    },50);
  }

</script>
</body>
</html>

以上这篇js定时器+简单的动画效果实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Javascript 相关文章推荐
防止页面被iframe(兼容IE,Firefox火狐)
Jul 04 Javascript
Jquery ThickBox插件使用心得(不建议使用)
Sep 08 Javascript
jquery的ajax()函数传值中文乱码解决方法介绍
Nov 08 Javascript
Jquery写一个鼠标拖动效果实现原理与代码
Dec 24 Javascript
2014 HTML5/CSS3热门动画特效TOP10
Dec 07 Javascript
Bootstrap富文本组件wysiwyg数据保存到mysql的方法
May 09 Javascript
微信小程序 require机制详解及实例代码
Dec 14 Javascript
Vue手把手教你撸一个 beforeEnter 钩子函数
Apr 24 Javascript
关于jquery中attr()和prop()方法的区别
May 28 jQuery
解决Vue+Element ui开发中碰到的IE问题
Sep 03 Javascript
vue实现两个区域滚动条同步滚动
Dec 13 Vue.js
vue el-upload上传文件的示例代码
Dec 21 Vue.js
浅谈Node.js CVE-2017-14849 漏洞分析(详细步骤)
Nov 10 #Javascript
angular之ng-template模板加载
Nov 09 #Javascript
深入理解Vue 单向数据流的原理
Nov 09 #Javascript
node.js基于express使用websocket的方法
Nov 09 #Javascript
angular2系列之路由转场动画的示例代码
Nov 09 #Javascript
使用ef6创建oracle数据库的实体模型遇到的问题及解决方案
Nov 09 #Javascript
基于vue配置axios的方法步骤
Nov 09 #Javascript
You might like
php函数array_merge用法一例(合并同类数组)
2013/02/03 PHP
php 不使用js实现页面跳转
2014/02/11 PHP
JavaScript学习笔记(十七)js 优化
2010/02/04 Javascript
js 处理URL实用技巧
2010/11/23 Javascript
JavaScript词法作用域与调用对象深入理解
2012/11/29 Javascript
QQ空间顶部折页撕开效果示例代码
2014/06/15 Javascript
node.js中的fs.readdirSync方法使用说明
2014/12/17 Javascript
Angular.Js的自动化测试详解
2016/12/09 Javascript
详解vue-cli快速构建项目以及引入bootstrap、jq
2017/05/26 Javascript
vue2 router 动态传参,多个参数的实例
2017/11/10 Javascript
Nuxt.js踩坑总结分享
2018/01/18 Javascript
Vue2.0中三种常用传值方式(父传子、子传父、非父子组件传值)
2018/08/16 Javascript
vue在自定义组件中使用v-model进行数据绑定的方法
2019/03/25 Javascript
js中!和!!的区别与用法
2020/05/09 Javascript
Element InfiniteScroll无限滚动的具体使用方法
2020/07/27 Javascript
vue 解决IOS10低版本白屏的问题
2020/11/17 Javascript
Python中title()方法的使用简介
2015/05/20 Python
深入浅析python定时杀进程
2016/06/06 Python
详解Python的Flask框架中生成SECRET_KEY密钥的方法
2016/06/07 Python
django在接受post请求时显示403forbidden实例解析
2018/01/25 Python
python中sys.argv函数精简概括
2018/07/08 Python
python实现拉普拉斯特征图降维示例
2019/11/25 Python
Python urlencode和unquote函数使用实例解析
2020/03/31 Python
Python实现仿射密码的思路详解
2020/04/23 Python
MAC平台基于Python Appium环境搭建过程图解
2020/08/13 Python
浅析python函数式编程
2020/09/26 Python
LivingSocial爱尔兰:爱尔兰本地优惠
2018/08/10 全球购物
几道Web/Ajax的面试题
2016/11/05 面试题
餐饮业的创业计划书范文
2013/12/26 职场文书
军训学生自我鉴定
2014/02/12 职场文书
办公室综合文员岗位职责范本
2014/02/13 职场文书
环保建议书作文
2014/03/12 职场文书
不忘国耻振兴中华演讲稿
2014/05/14 职场文书
技术股份合作协议书
2014/10/05 职场文书
CentOS8.4安装Redis6.2.6的详细过程
2021/11/20 Redis
Python的property属性详细讲解
2022/04/11 Python