当前位置:  编程技术>jquery

jquery animate动画函数用法举例

    来源: 互联网  发布时间:2014-09-03

    本文导语:  本节内容: jquery animate动画函数的用法 Jquery animate 官方地址 http://api.jquery.com/animate/ .animate( properties, [duration,] [easing,] [complete] )   version added: 1.0 properties A map of CSS properties that the animation will move toward. duration A string or number determ...

本节内容:
jquery animate动画函数的用法

Jquery animate 官方地址 http://api.jquery.com/animate/

.animate( properties, [duration,] [easing,] [complete] )   version added: 1.0

properties A map of CSS properties that the animation will move toward.

duration A string or number determining how long the animation will run.

easing A string indicating which easing function to use for the transition.

complete A function to call once the animation is complete.

.animate( properties, options )  version added: 1.0

properties A map of CSS properties that the animation will move toward.

options A map of additional options to pass to the method. Supported keys:

duration: A string or number determining how long the animation will run.(默认值: "normal") 三种预定速度之一的字符串("slow", "normal", or "fast")或表示动画时长的毫秒数值(如:1000)
easing: A string indicating which easing function to use for the transition.(默认值: "swing") 要使用的擦除效果的名称(需要插件支持).默认jQuery提供"linear" 和 "swing".
complete: A function to call once the animation is complete.在动画完成时执行的函数
step: A function to be called after each step of the animation.在动画每一步执行的函数
queue: A Boolean indicating whether to place the animation in the effects queue. If false, the animation will begin immediately.(默认值: true) 设定为false将使此动画不进入动画队列 (jQuery 1.2中新增)
specialEasing: A map of one or more of the CSS properties defined by the properties argument and their corresponding easing functions (added 1.4).来自 styles 参数的一个或多个 CSS 属性的映射,以及它们的对应 easing 函数。

例子:
 

代码示例:





jquery animate动画函数-www.

  div { margin:3px; width:40px; height:40px;background-color:#FCC; display:none; text-align:right; }


 

jquery animate动画函数

 
function runIt() {
    $("#t1").animate({width: '80%'}, "3000", "swing",function(){$("#t1").html($("#t1").width());});
    $('#t1').animate({width: '50%',opacity: .5},{duration:'3000',easing:"swing",
            step: function(now, fx) {
                var data = fx.elem.id + '---' + fx.prop + ': ' + now;
                $('#t1').html(data );
              },
            complete:function(){
                $('#t1').append('--|--complete--|--');
            }
        });
}
runIt();



    
 
 

您可能感兴趣的文章:

  • jQuery概述,代码举例及最新版下载
  • jquery onpropertychange键盘事件用法举例
  • jQuery使任意div随意隐藏的代码举例
  • Jquery更换主题同时刷新iframe页面的代码举例
  • jquery禁用右键方法举例
  • Jquery 过滤器(first,last,not,even,odd)用法举例
  • Jquery删除元素的代码举例
  • jquery显示、隐藏div的方法举例
  • jQuery动态获取系统时间的代码举例
  • Jquery 定时局部刷新的代码举例
  • Jquery 显示隐藏更多文本的代码举例
  • jQuery 操作下拉列表框的代码举例
  • Jquery 限制只能输入数字的代码举例
  • jquery插件jTimer jquery定时器的用法举例
  • Jquery验证Email格式是否合法的代码举例
  • Jquery节点操作(插入,复制,替换,删除)举例
  • jquery控制自动刷新的代码举例
  • Jquery读取json文件的代码举例
  • Jquery验证用户名和密码的代码举例
  • jquery cookie插件的用法举例
  • jquery中get,post和ajax方法应用举例
  • JS与jquery自定义属性用法
  • jQuery setTimeout()函数的用法介绍
  • jQuery :visible 选择器(冒号)的用法
  • JQuery 判断某个属性是否存在hasAttr用法
  • jQuery setTimeout用法总结(实例)
  • Jquery confirm弹出框的用法
  • jquery的focus函数用法示例
  • Jquery中slideToggle()与toggleClass()用法
  • jquery 字符串切割函数substring的用法说明
  • jquery判断浏览器类型($.browser用法)
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • jquery中map函数与each函数的区别实例介绍
  • jQuery.proxy向函数中传参的小例子
  • 关于jquery中全局函数each使用介绍
  • jquery浏览器判断函数代码
  • jQuery学习笔记之jQuery构建函数的7种方法
  • JQuery在页面加载完成时执行函数的示例代码
  • 从零学jquery之如何使用回调函数
  • jquery中ajax函数执行顺序问题之如何设置同步
  • NOSQL iis7站长之家
  • jquery toggle()函数实例解析
  • jquery序列化表单以及回调函数的使用示例
  • jQuery的animate函数学习记录
  • Jquery中"$(document).ready(function(){ })"函数的使用详解
  • jquery中的animate函数
  • jquery animate动画函数用法浅析
  • jQuery filter函数使用方法
  • jQuery animate函数动画过渡效果简介
  • jquery刷新页面代码及js常用函数汇总
  • jquery自定义函数的多种方法
  • jquery animate()函数实现菜单折叠效果
  • 通过javascript库JQuery实现页面跳转功能代码
  • jQuery鼠标动画插件 jquery-ahover
  • Jquery操作html复选框checkbox:全选,全不选和反选
  • jQuery向导插件 Jquery Wizard Plugin
  • struts+spring+hibernate+jquery实现分页功能的几个基本类介绍(异步加载)
  • jQuery圆角插件 jQuery Corners
  • jQuery相册插件 jQuery.popeye
  • jQuery UI组件 jQuery UI
  • jQuery右键菜单插件 jQuery ContextMenu
  • jQuery分页插件 Pagination jQuery Plugin
  • jQuery日历插件 jQuery Week Calendar


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3