jQuery旋转插件jqueryrotate用法详解

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery旋转插件jqueryrotate用法详解相关的知识,希望对你有一定的参考价值。

参考技术A 本文实例讲述了jQuery旋转插件jqueryrotate用法。分享给大家供大家参考,具体如下:
CSS3
提供了多种变形效果,比如矩阵变形、位移、缩放、旋转和倾斜等等,让页面更加生动活泼有趣,不再一动不动。然后
IE10
以下版本的浏览器不支持
CSS3
变形,虽然
IE
有私有属性滤镜(filter),但不全面,而且效果和性能都不好。
今天介绍一款
jQuery
插件——jqueryrotate,它可以实现旋转效果。jqueryrotate
支持所有主流浏览器,包括
IE6。如果你想在低版本的
IE
中实现旋转效果,那么
jqueryrotate
是一个很好的选择。
兼容性
jqueryrotate
支持所有主流浏览器,包括
IE6。jqueryrotate
在高级浏览器中使用
CSS3
transform
属性实现,在低版本
IE
中使用
VML
实现。当然,你可以使用
IE
条件注释,低版本
IE
使用
jqueryrotate,高级浏览器则直接使用
CSS3。
使用方法
//演示1
//旋转45angle
$(document.body).click(function
()

//方式1
$('.divOne').rotate(45);
//方式2
$('.divOne').rotate(
angle:
45
);
);
//演示2
//鼠标移动效果
//方式1
$('.divOne').rotate(
bind:

mouseover:
function
()

$(this).rotate(
animateTo:
180
);
,
mouseout:
function
()

$(this).rotate(
animateTo:
0
);


);
//方式2
$('.divOne').mouseover(function
()

$(this).rotate(
animateTo:
180
);
).mouseout(function
()

$(this).rotate(animateTo:0);
);
//演示3
不停旋转
//方式1
var
angle
=
0;
setInterval(function
()

angle
+=
3;
$('.divOne').rotate(angle);
,
50);
//方式2
var
rotation
=
function
()

$('.divOne').rotate(
angle:
0,
animateTo:
360,
callback:rotation
)

rotation();
//方式3
var
rotation
=
function
()

$('.divOne').rotate(
angle:
0,
animateTo:
360,
callback:
rotation,
easing:
function
(x,
t,
b,
c,
d)

return
c
*
(t
/
d)
+
b;

)

rotation();
//演示4
点击旋转
//方式1
$('.divOne').click(function
()

$(this).rotate(
angle:
0,
animateTo:
180,
easing:
$.easing.easeInOutExpo
);
);
var
val
=
0;
$('.divOne').click(function
()

val
+=
90;
$(this).rotate(
animateTo:
val
);
);
参数
参数
类型
说明
默认值
angle
数字
旋转一个角度
0
animateTo
数字
从当前的角度旋转到多少度
0
step
函数
每个动画步骤中执行的回调函数,当前角度值作为该函数的第一个参数

easing
函数
自定义旋转速度、旋转效果,需要使用
jQuery.easing.js

duration
整数
旋转持续时间,以毫秒为单位

callback
函数
旋转完成后的回调函数

getRotateAngle
函数
返回旋转对象当前的角度

stopRotate
函数
停止旋转


演示虽然使用的是图片,但
jqueryrotate
并不只是能运用在图片上,其他元素如
div
等也可以使用。同时,你可以发挥想象,制作出更多关于旋转的特效。
更多关于jQuery相关内容感兴趣的读者可查看本站专题:《jQuery窗口操作技巧总结》、《jQuery拖拽特效与技巧总结》、《jQuery常用插件及用法总结》、《jquery中Ajax用法总结》、《jQuery表格(table)操作技巧汇总》、《jQuery扩展技巧总结》、《jQuery常见经典特效汇总》、《jQuery动画与特效用法总结》及《jquery选择器用法总结》
希望本文所述对大家jQuery程序设计有所帮助。

tablesorter-jQuery插件用法

I found the tablesorter - jQuery plugin cool and easy to-be implemented. Plugin is written by Christian Bach and my snippet uses tablesorter version 2.0.3. Images are stored on my server as well as inlcuded .js files in example directory. Project's site: http://tablesorter.com/
  1. <style>
  2. table {
  3. table-layout:auto;
  4. border-collapse:collapse;
  5. border-color:grey;
  6. }
  7.  
  8. th {
  9. background-repeat: no-repeat;
  10. background-position: center left;
  11. margin-left: -1px;
  12. padding-left: 20px;
  13. }
  14.  
  15. th.header {
  16. background-image: url(http://www.polet.cz/images/examples/small.gif);
  17. cursor: pointer;
  18. font-weight: bold;
  19. background-position: center left;
  20. padding-left: 20px;
  21. }
  22.  
  23. th.header:hover {
  24. cursor: pointer;
  25. font-weight: bold;
  26. background-repeat: no-repeat;
  27. background-position: center left;
  28. padding-left: 20px;
  29. }
  30.  
  31. th.headerSortUp {
  32. background-image: url(http://www.polet.cz/images/examples/asc.gif);
  33. }
  34.  
  35. th.headerSortDown {
  36. background-image: url(http://www.polet.cz/images/examples/desc.gif);
  37. }
  38. </style>
  39.  
  40. <script type="text/javascript" src="http://www.polet.cz/examples/jquery-1.3.1.js"></script>
  41. <script type="text/javascript" src="http://www.polet.cz/examples/jquery.tablesorter.js"></script>
  42. <script type="text/javascript">
  43.  
  44. $(document).ready(function()
  45. {
  46. $("#table1").tablesorter(
  47. {
  48. /* Initial sort by first [[column],[asc]] */
  49. sortList: [[0,0]],
  50.  
  51. /* Turns off sorting ability for 3rd column */
  52. headers: {
  53. 2: {
  54. sorter: false
  55. },
  56. }
  57. });
  58. });
  59. </script>
  60.  
  61. <table id="table1" border="1" cellpadding="5px">
  62. <thead>
  63. <tr>
  64. <th>Letter</th>
  65. <th>Digit</th>
  66. <th>Not sortable column</td>
  67. <th>URL</td>
  68. </tr>
  69. </thead>
  70. <tbody>
  71. <tr>
  72. <td>a</td>
  73. <td>9</td>
  74. <td>1</td>
  75. <td><a href=''>http://example/a9</a></td>
  76. </tr>
  77. <tr>
  78. <td>b</td>
  79. <td>1</td>
  80. <td>2</td>
  81. <td><a href=''>http://example/b1</a></td>
  82. </tr>
  83. <tr>
  84. <td>c</td>
  85. <td>2</td>
  86. <td>3</td>
  87. <td><a href=''>http://example/c2</a></td>
  88. </tr>
  89. <tr>
  90. <td>d</td>
  91. <td>8</td>
  92. <td>4</td>
  93. <td><a href=''>http://example/d8</a></td>
  94. </tr>
  95. <tr>
  96. <td>e</td>
  97. <td>6</td>
  98. <td>5</td>
  99. <td><a href=''>http://example/e6</a></td>
  100. </tr>
  101. <tr>
  102. <td>f</td>
  103. <td>5</td>
  104. <td>6</td>
  105. <td><a href=''>http://example/f5</a></td>
  106. </tr>
  107. </tbody>
  108. </table>

以上是关于jQuery旋转插件jqueryrotate用法详解的主要内容,如果未能解决你的问题,请参考以下文章

Jquery旋转,在mouseenter上运行,在mouseout上停止

IE7、IE8 和 IE9 中的 jQuery 旋转图像问题

jQuery 旋转 - IE7 或 IE8 问题

jQuery旋转(按度旋转)背景图像

带有 jcrop 的 jQuery 旋转函数

如何不旋转 jcrop