3D和2D转换的jQuery插件 TransformJS

码农软件 · 软件分类 · 其他jQuery插件 · 2020-01-07 06:59:36

软件介绍

2D and 3D transforms as regular CSS properties you can set using .css() and animate using .animate()

示例代码;

$(document).ready(function() {
$('#forward').click(function() {
  $('#test').animate({
    translateX:'-=150',
    translateY:'+=150',
    scale:'+=2',
    rotateY: '+='+(2*Math.PI),
    rotateX: '+='+Math.PI,
    rotateZ: '+='+Math.PI
  },1500);   
}); 

$('#backward').click(function() {
  $('#test').animate({
    translateX:'+=150',
    translateY:'-=150',
    scale:'-=2',
    rotateY: '-='+(2*Math.PI),
    rotateX: '-='+Math.PI,
    rotateZ: '-='+Math.PI
  },1500);
})
});

 

本文地址:https://codercto.com/soft/d/22832.html

The Art of Computer Programming, Volume 4,  Fascicle 3

The Art of Computer Programming, Volume 4, Fascicle 3

Donald E. Knuth / Addison-Wesley Professional / 2005-08-05 / USD 19.99

Finally, after a wait of more than thirty-five years, the first part of Volume 4 is at last ready for publication. Check out the boxed set that brings together Volumes 1 - 4A in one elegant case, and ......一起来看看 《The Art of Computer Programming, Volume 4, Fascicle 3》 这本书的介绍吧!

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

在线进制转换器
在线进制转换器

各进制数互转换器

XML、JSON 在线转换
XML、JSON 在线转换

在线XML、JSON转换工具