hotWords.html 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  1. <!DOCTYPE html
  2. PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <title>热词云js代码标签云球状3D旋转展示</title>
  7. <meta name="description" content="js代码制作标签云球状3D旋转展示,通过鼠标滑过标签感应来进行3D旋转效果。" />
  8. </head>
  9. <body>
  10. <style type="text/css">
  11. * {
  12. margin: 0;
  13. padding: 0;
  14. list-style-type: none;
  15. border: none;
  16. }
  17. a,
  18. img {
  19. border: 0;
  20. }
  21. body {
  22. /* background: #09c; */
  23. }
  24. /* rotate */
  25. #rotate {
  26. height: 100%;
  27. width: 100%;
  28. position: relative;
  29. margin: 10px auto;
  30. }
  31. #rotate a {
  32. position: absolute;
  33. top: 0px;
  34. left: 0px;
  35. color: #09c;
  36. font-weight: bold;
  37. padding: 3px 6px;
  38. font-size: 14px;
  39. }
  40. #rotate a:hover {
  41. /* border: 1px solid #eee; */
  42. background: #000;
  43. border-radius: 5px;
  44. }
  45. </style>
  46. <!-- <script type="text/javascript" src="js/rotate.js"></script> -->
  47. <!-- 代码开始 -->
  48. <div id="rotate">
  49. <a href="http://www.baidu.com" target="_blank">托盘</a>
  50. <a href="http://www.baidu.com" target="_blank">小车</a>
  51. <a href="http://www.baidu.com" target="_blank">直线电机</a>
  52. <a href="http://www.baidu.com" target="_blank">小车网络</a>
  53. <a href="http://www.baidu.com" target="_blank">倾翻机构</a>
  54. <a href="http://www.baidu.com" target="_blank">继电器</a>
  55. <a href="http://www.baidu.com" target="_blank">托盘</a>
  56. <a href="http://www.baidu.com" target="_blank">小车</a>
  57. <a href="http://www.baidu.com" target="_blank">直线电机</a>
  58. <a href="http://www.baidu.com" target="_blank">小车网络</a>
  59. <a href="http://www.baidu.com" target="_blank">倾翻机构</a>
  60. <a href="http://www.baidu.com" target="_blank">继电器</a>
  61. </div>
  62. <!-- 代码结束 -->
  63. </body>
  64. <script>
  65. var radius = 150;
  66. var dtr = Math.PI / 180;
  67. var d = 300;
  68. var mcList = [];
  69. var active = false;
  70. var lasta = 1;
  71. var lastb = 1;
  72. var distr = true;
  73. var tspeed = 2;
  74. var size = 250;
  75. var mouseX = 0;
  76. var mouseY = 0;
  77. var howElliptical = 1;
  78. var aA = null;
  79. var oDiv = null;
  80. window.onload = function () {
  81. var i = 0;
  82. var oTag = null;
  83. oDiv = document.getElementById('rotate');
  84. aA = oDiv.getElementsByTagName('a');
  85. for (i = 0; i < aA.length; i++) {
  86. oTag = {};
  87. oTag.offsetWidth = aA[i].offsetWidth;
  88. oTag.offsetHeight = aA[i].offsetHeight;
  89. mcList.push(oTag);
  90. }
  91. sineCosine(0, 0, 0);
  92. positionAll();
  93. oDiv.onmouseover = function () {
  94. active = true;
  95. };
  96. oDiv.onmouseout = function () {
  97. active = false;
  98. };
  99. oDiv.onmousemove = function (ev) {
  100. var oEvent = window.event || ev;
  101. mouseX = oEvent.clientX - (oDiv.offsetLeft + oDiv.offsetWidth / 2);
  102. mouseY = oEvent.clientY - (oDiv.offsetTop + oDiv.offsetHeight / 2);
  103. mouseX /= 5;
  104. mouseY /= 5;
  105. };
  106. setInterval(update, 30);
  107. };
  108. function update() {
  109. var a;
  110. var b;
  111. if (active) {
  112. a = (-Math.min(Math.max(-mouseY, -size), size) / radius) * tspeed;
  113. b = (Math.min(Math.max(-mouseX, -size), size) / radius) * tspeed;
  114. }
  115. else {
  116. a = lasta * 0.98;
  117. b = lastb * 0.98;
  118. }
  119. lasta = a;
  120. lastb = b;
  121. if (Math.abs(a) <= 0.01 && Math.abs(b) <= 0.01) {
  122. return;
  123. }
  124. var c = 0;
  125. sineCosine(a, b, c);
  126. for (var j = 0; j < mcList.length; j++) {
  127. var rx1 = mcList[j].cx;
  128. var ry1 = mcList[j].cy * ca + mcList[j].cz * (-sa);
  129. var rz1 = mcList[j].cy * sa + mcList[j].cz * ca;
  130. var rx2 = rx1 * cb + rz1 * sb;
  131. var ry2 = ry1;
  132. var rz2 = rx1 * (-sb) + rz1 * cb;
  133. var rx3 = rx2 * cc + ry2 * (-sc);
  134. var ry3 = rx2 * sc + ry2 * cc;
  135. var rz3 = rz2;
  136. mcList[j].cx = rx3;
  137. mcList[j].cy = ry3;
  138. mcList[j].cz = rz3;
  139. per = d / (d + rz3);
  140. mcList[j].x = (howElliptical * rx3 * per) - (howElliptical * 2);
  141. mcList[j].y = ry3 * per;
  142. mcList[j].scale = per;
  143. mcList[j].alpha = per;
  144. mcList[j].alpha = (mcList[j].alpha - 0.6) * (10 / 6);
  145. }
  146. doPosition();
  147. depthSort();
  148. }
  149. function depthSort() {
  150. var i = 0;
  151. var aTmp = [];
  152. for (i = 0; i < aA.length; i++) {
  153. aTmp.push(aA[i]);
  154. }
  155. aTmp.sort
  156. (
  157. function (vItem1, vItem2) {
  158. if (vItem1.cz > vItem2.cz) {
  159. return -1;
  160. }
  161. else if (vItem1.cz < vItem2.cz) {
  162. return 1;
  163. }
  164. else {
  165. return 0;
  166. }
  167. }
  168. );
  169. for (i = 0; i < aTmp.length; i++) {
  170. aTmp[i].style.zIndex = i;
  171. }
  172. }
  173. function positionAll() {
  174. var phi = 0;
  175. var theta = 0;
  176. var max = mcList.length;
  177. var i = 0;
  178. var aTmp = [];
  179. var oFragment = document.createDocumentFragment();
  180. for (i = 0; i < aA.length; i++) {
  181. aTmp.push(aA[i]);
  182. }
  183. aTmp.sort
  184. (
  185. function () {
  186. return Math.random() < 0.5 ? 1 : -1;
  187. }
  188. );
  189. for (i = 0; i < aTmp.length; i++) {
  190. oFragment.appendChild(aTmp[i]);
  191. }
  192. oDiv.appendChild(oFragment);
  193. for (var i = 1; i < max + 1; i++) {
  194. if (distr) {
  195. phi = Math.acos(-1 + (2 * i - 1) / max);
  196. theta = Math.sqrt(max * Math.PI) * phi;
  197. }
  198. else {
  199. phi = Math.random() * (Math.PI);
  200. theta = Math.random() * (2 * Math.PI);
  201. }
  202. mcList[i - 1].cx = radius * Math.cos(theta) * Math.sin(phi);
  203. mcList[i - 1].cy = radius * Math.sin(theta) * Math.sin(phi);
  204. mcList[i - 1].cz = radius * Math.cos(phi);
  205. aA[i - 1].style.left = mcList[i - 1].cx + oDiv.offsetWidth / 2 - mcList[i - 1].offsetWidth / 2 + 'px';
  206. aA[i - 1].style.top = mcList[i - 1].cy + oDiv.offsetHeight / 2 - mcList[i - 1].offsetHeight / 2 + 'px';
  207. }
  208. }
  209. function doPosition() {
  210. var l = oDiv.offsetWidth / 2;
  211. var t = oDiv.offsetHeight / 2;
  212. for (var i = 0; i < mcList.length; i++) {
  213. aA[i].style.left = mcList[i].cx + l - mcList[i].offsetWidth / 2 + 'px';
  214. aA[i].style.top = mcList[i].cy + t - mcList[i].offsetHeight / 2 + 'px';
  215. aA[i].style.fontSize = Math.ceil(12 * mcList[i].scale / 2) + 8 + 'px';
  216. aA[i].style.filter = "alpha(opacity=" + 100 * mcList[i].alpha + ")";
  217. aA[i].style.opacity = mcList[i].alpha;
  218. }
  219. }
  220. function sineCosine(a, b, c) {
  221. sa = Math.sin(a * dtr);
  222. ca = Math.cos(a * dtr);
  223. sb = Math.sin(b * dtr);
  224. cb = Math.cos(b * dtr);
  225. sc = Math.sin(c * dtr);
  226. cc = Math.cos(c * dtr);
  227. }
  228. </script>
  229. </html>