一次添加不同的样式(tagcloud / linkcloud)到超链接

时间:2014-10-24 14:54:17

标签: javascript jquery html css hyperlink

我需要创建简单的链接显示,如下图所示; enter image description here

我的想法是为所有这些链接添加单独的样式。但它看起来不是最好的方法。

有人试过这样的事吗?我可以用JavaScript或JQuery做到这一点吗?

1 个答案:

答案 0 :(得分:2)

这允许您随机定位文本。也许你可以根据自己的需要稍微编辑它?



<html>
<head>
<style type='text/css'>
   body {
      border: 1px solid #000;
      height: 300px;
      margin: 0;
      padding: 0;
      width: 300px;
   }
 
   .box {
      height: 30px;
      position: absolute;
      width: auto;
   }
   
   #div1 { background:0;color:red; }
   #div2 { background:0;color:blue; }
   #div3 { background:0; color:green;}
</style>
<script type='text/javascript'>
   function setDivPos() {
      for (i=1; i<=3; i++) {
         var x = Math.floor(Math.random()*250);
         var y = Math.floor(Math.random()*250);
         document.getElementById('div'+i).style.left = x + 'px';
         document.getElementById('div'+i).style.top = y + 'px';
      }
   }
</script>
</head>
<body onload='setDivPos();'>
<div id='div1' class='box'>one word</div>
<div id='div2' class='box'>another word</div>
<div id='div3' class='box'>and so on</div>
</body>
</html>
Anyone have time to help?
&#13;
&#13;
&#13;

替代

另一种选择是:this demo

链接:

您可能感兴趣的链接here