当前位置:  软件>JavaScript软件

动画引擎平台 GreenSock Animation Platform

    来源:    发布时间:2015-01-21

    本文导语:  Flash业界久负盛名的动画引擎(TweenLite等)GreenSock推出了新一代动画引擎平台GreenSock Animation Platform,最棒的是包括JS版本!      //JS版本    var photo = document.getElementById("photo"); //or use jQuery's $("#photo")  TweenLite.to(photo, 1.5, {width:...

Flash业界久负盛名的动画引擎(TweenLite等)GreenSock推出了新一代动画引擎平台GreenSock Animation Platform,最棒的是包括JS版本!

动画引擎平台 GreenSock Animation Platform[图片]

 

 

 //JS版本

 

 var photo = document.getElementById("photo"); //or use jQuery's $("#photo")

 TweenLite.to(photo, 1.5, {width:100});

 

 //fade out all of the elements with the class "myClass" 

 TweenLite.to( $(".myClass"), 1, {css:{opacity:0}});   

 

 //tween the width of the element with id "myElement" to 500px 

 TweenLite.to( $("#myElement"), 1, {css:{width:"500px"}, ease:Elastic.easeOut});   

 

 //tween the "marginTop" of all objects of the class "myClass" in a staggered fashion so that they appear to fall into place from 100px up 

 var tl = new TimelineLite(); 

 tl.staggerFrom( $(".myClass"), 1, {css:{marginTop:"-=100px", opacity:0}}, 0.1);   

 //or use jQuery's each() method to loop through the results and stagger a fade out 

 $(".myClass").each( function(index, element) {     

     TweenLite.to( element, 1, {css:{autoAlpha:0}, delay:index * 0.2}); 

 });   

 //add a click handler that uses $(this) to refer to the menu element that was clicked and tween its height to 100px 

 $("#menu").click(function(){ 

     TweenLite.to( $(this), 0.7, { css:{height:"100px"}, ease:Power2.easeInOut } );

 });

 

 //AS3.0版本:

 //notice the target is an array 

 TweenLite.to([mc1, mc2, mc3], 1, {alpha:0});   

 var tl:TimelineLite = new TimelineLite(); //previously only appendMultiple() could handle arrays. Now append() and insert() can too. 

 tl.append( [tween1, tween2, tween3] ); 

 tl.insert( [tween1, tween2, tween3] );   //kill all tweens of mc1, mc2, and/or mc3 


    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • iphone cocos2d 精灵的动画效果(图片,纹理,帧)CCAnimation实现
  • 为什么即使是使用framebuffer的,动画刷新速度也比不上GUI系统中显示的动画快?
  • 动画[火影忍者]第571话[柱间细胞]预告及播放地址(2月20日周四晚放送)
  • 骨骼动画引擎 AlloyStick
  • 矢量动画创作工具包 Synfig
  • 仿Path按钮动画效果 PathButton
  • 合金动画编辑器 AlloyAnimation
  • CSS动画管理工具 Animo.js
  • GIF动画制作工具 GiftedMotion
  • Web动画开发工具包 AJAX Animator
  • jquery动画特效,jquery动画实例教程
  • 二维动画设计 KToon
  • 动画电影制作工具 Morevna
  • jquery防止重复执行动画避免页面混乱
  • 实时交互动画开发软件 Animata
  • 动画精灵工具 ASE
  • jQuery 页面动画效果 Animsition
  • Javascript动画组件 Motion
  • DevExpress实现GridControl显示Gif动画的方法
  • Flash动画转HTML5 Smokescreen
  • 动画片播放器


  • 站内导航:


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

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

    浙ICP备11055608号-3