您的位置:首页 > 其它

Sharepoint Tags cloud

2010-09-27 17:19 162 查看
效果:http://www.roytanck.com/tag-cloud/

需要 Jquery,Jquery,swfobject

文档资料:

http://www.roytanck.com/2008/05/19/how-to-repurpose-my-tag-cloud-flash-movie/

<tags><a href='http://www.roytanck.com/tag1' style='9'>Tag name</a><a href='http://www.roytanck.com/tag2' style='12'>Tag two</a></tags>

代码

<html>
<body>
<script src="jquery-1.4.2.min.js"></script>
<script src="jquery.swfobject.1-1-1.min.js"></script>

<script>
$(document).ready(
function () {
// #myFlashVars is the selector
$('#myFlashVars').flash(
{
// test_flashvars.swf is the flash document
swf: 'http://www.roytanck.com/wp-content/plugins/wp-cumulus/tagcloud.swf?r=7544641',
movie:'http://www.roytanck.com/wp-content/plugins/wp-cumulus/tagcloud.swf?r=7544641',
// these arguments will be passed into the flash document
wmode: "transparent",
flashvars: {
mode: 'tags',
distr: 'true',
tcolor: '0x111111',
hicolor: '0x000000',
tagcloud: "<tags><a href='http://www.roytanck.com/tag1' style='9'>Tag name</a><a href='http://www.roytanck.com/tag2' style='12'>Tag two</a></tags>"
}
}
);
}
);
</script>
<div id="myFlashVars"></div>
</body>
</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: