gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-28 12:40:17 25 4
gpt4 key购买 nike

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

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

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

最佳答案

这允许您随机放置文本。也许您可以根据自己的需要对其进行稍微编辑?

<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?

备选

替代方案是:this demo

链接:

有几个链接here你可能感兴趣

关于javascript - 一次为超链接添加不同的样式(tagcloud/linkcloud),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26550508/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com