zoukankan      html  css  js  c++  java
  • slideLeft DIV向左右滑动

    animate() 方法执行 CSS 属性集的自定义动画。

    该方法通过CSS样式将元素从一个状态改变为另一个状态。CSS属性值是逐渐改变的,这样就可以创建动画效果。

    只有数字值可创建动画(比如 "margin:30px")。字符串值无法创建动画(比如 "background-color:red")。

    注释:使用 "+=" 或 "-=" 来创建相对动画(relative animations)。

    $(selector).animate(styles,speed,easing,callback)
    $(selector).animate(styles,options)  

    语法及参数可参考
    http://www.w3school.com.cn/jquery/effect_animate.asp

    实现的方法

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>无标题文档</title>
    <script type="text/javascript" src="jquery-1.11.2.min.js"></script>
    <script type="text/javascript">
    //自写JQuery方法
    //向右滑动就是按毫秒值隐藏style,向左滑动就是按毫秒值显示style jQuery.fn.slideRight = function( speed, callback ) { this.animate({ width : "hide", paddingLeft : "hide", paddingRight : "hide", marginLeft : "hide", marginRight : "hide" }, speed, callback ); }; jQuery.fn.slideLeft = function( speed, callback ) { this.animate({ width : "show", paddingLeft : "show", paddingRight : "show", marginLeft : "show", marginRight : "show" }, speed, callback ); }; </script> <script type="text/javascript"> function huadong() { $(".class").slideLeft(40000); } huadong() </script> </head> <body onload="huadong()"> <div class="class" style="background-color:red; display:none; height:200px; 100%"></div> </body> </html
  • 相关阅读:
    37. 解数独
    皮尔逊相关系数的计算以及数据的描述性统计
    商业微信小程序开发实战---1
    51. N皇后
    拟合算法
    216. 组合总和 III
    打印心性
    指针
    第五天
    循环 和 宏
  • 原文地址:https://www.cnblogs.com/happinesshappy/p/4521040.html
Copyright © 2011-2022 走看看