WordPress 3D旋转标签云

黑色理想 2018年4月3日00:00:00技术分享评论331453字阅读4分50秒

这个3D标签云可不是N年前的那个Flash版的 wp-cumulus, 这个3D旋转标签云完全使用JS代码编写,很小只有几K多,不用担心像垃圾Flash对资源的耗费。

具体效果看本文的侧边栏标签云。

下面以WordPress默认主题Twenty Fifteen为例,将这个炫酷的特效加到你的博客上。

一,添加生成3D效果的脚本

将下载的3d.js脚本放到Twenty Fifteen主题js目录中。

注:这个3D旋转标签云有两种效果的JS文件,我用的是第二种。

打开Twenty Fifteen主题 functions.php 模板文件,在大约252行,添加:

  1. wp_enqueue_script( '3d', get_template_directory_uri() . '/js/3d.js' );

或者直接将下面代码加到主题header模板

  1. <script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/3d.js"></script>

二,添加样式

将下面的样式添加到主题style.css的最后即可:

  1. #tag_cloud-2 {
  2.     position:relative;
  3.     height:340px;
  4.     margin10px auto 0;
  5. }
  6. #tag_cloud-2 a {
  7.     position:absolute;
  8.     color#fff;
  9.     text-aligncenter;
  10.     text-overflow: ellipsis;
  11.     whitewhite-spacenowrap;
  12.     top:0px;
  13.     left:0px;
  14.     padding3px 5px;
  15.     bordernone;
  16. }
  17. #tag_cloud-2 a:hover {
  18.     background#d02f53;
  19.     displayblock;
  20. }
  21. #tag_cloud-2 a:nth-child(n) {
  22.     background#666;
  23.     border-radius: 3px;
  24.     displayinline-block;
  25.     line-height18px;
  26.     margin: 0 10px 15px 0;
  27. }
  28. #tag_cloud-2 a:nth-child(2n) {
  29.     background#d1a601;
  30. }
  31. #tag_cloud-2 a:nth-child(3n) {
  32.     background#286c4a;
  33. }
  34. #tag_cloud-2 a:nth-child(5n) {
  35.     background#518ab2;
  36. }
  37. #tag_cloud-2 a:nth-child(4n) {
  38.     background#c91d13;
  39. }

三、修改对应选择器名称

比较麻烦点的是,其中 #tag_cloud-2 需根据不同情况加以修改,比如查看标签云小工具的网页源代码显示的是:

  1. <aside id="tag_cloud-3" class="widget widget_tag_cloud">
  2. <h2 class="widget-title">标签</h2>

你就需要将 #tag_cloud-2改为#tag_cloud-3,同时将3d.js中的tag_cloud-2也改为tag_cloud-3.

JS源代码:来自互联网

继续阅读
黑色理想
  • 本文由 发表于 2018年4月3日00:00:00
  • 转载请务必保留本文链接:http://ilhc.cc/1463.html
5种方法获取Bing每日图片 技术分享

5种方法获取Bing每日图片

写在前面的:大家都知道微软的Bing搜索引擎首页每天都会提供了一些有趣的图片,而这些图片很多都是有故事含义的,很多网友每天去访问bing首页都是为了这些图片而去的。那么怎么Download下来呢,下面...
匿名

发表评论

匿名网友 填写信息

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: