DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁SEO優化 >> SEO相關 >> 關於SEO >> 分享一個完美符合SEO優化的3D動態標簽方法
分享一個完美符合SEO優化的3D動態標簽方法
編輯:關於SEO     

前兩天有朋友問張力,我博客的3D動態標簽是如何實現的?認識我的朋友都知道,張力自己制作了低調與華麗wordpress主題,而這個主題一直以 來都是使用的3D動態標簽,之前有朋友問我,我這種3D動態標簽是否符合SEO優化,我可以很肯定的告訴大家這種3D動態標簽是符合SEO優化的,它並非 是完全使用JS實現的,而是完美使用DIV+CSS+JS實現的,不明白的朋友可以去我博客看看,同時也可以看看我博客源代碼裡面標簽是否是JS實現的。

今天張力就將這種符合SEO優化的3D動態標簽效果分享給大家。

第一步:添加CSS樣式

我們只需要將以下CSS樣式添加到我們的CSS樣式表裡面就可以了。

#div1{position:relative;display:block;width:250px;height:250px;float:left;}

#div1 a{text-decoration:none;position:absolute;top:0;left:0;color:#333;font-family:Microsoft YaHei,small;}

#div1 a:hover{border:1px solid #000;color:#000;padding:0 5px;}

第二步:添加JS加載

我就直接貼出JS的內容,大家也可以把它整理一下放入到一個單獨的JS文件裡面進行調用。

//

var radius = 100;var dtr = Math.PI/110;var d=200;var mcList = [];var active = false;var lasta = 1;var lastb = 1;var distr = true;var tspeed=0.4;var size=2000000;var mouseX=0;var mouseY=0;var howElliptical=1;var aA=null;var oDiv=null;window.onload=function (){var i=0;var oTag=null;oDiv=document.getElementById('div1');aA=oDiv.getElementsByTagName('a');for(i=0;ifunction update(){var a;var b;if(active){a = (-Math.min( Math.max( -mouseY, -size ), size ) / radius ) * tspeed;b = (Math.min( Math.max( -mouseX, -size ), size ) / radius ) * tspeed;}else{a = lasta * 1;b = lastb * 1;}lasta=a;lastb=b;if(Math.abs(a)<=0.01 && Math.abs(b)<=0.01){return;}var c=0;sineCosine(a,b,c);for(var j=0;j}function depthSort(){var i=0;var aTmp=[]; for(i=0;ivItem2.cz){return -1; }else if(vItem1.czfor(i=0;imcList[i-1].cx = radius * Math.cos(theta)*Math.sin(phi);mcList[i-1].cy = radius * Math.sin(theta)*Math.sin(phi);mcList[i-1].cz = radius * Math.cos(phi);aA[i-1].style.left=mcList[i-1].cx+oDiv.offsetWidth/2-mcList[i-1].offsetWidth/2+'px';aA[i-1].style.top=mcList[i-1].cy+oDiv.offsetHeight/2-mcList[i-1].offsetHeight/2+'px';}}function doPosition(){var l=oDiv.offsetWidth/2;var t=oDiv.offsetHeight/2;for(var i=0;i // ]]>

第三步:添加DIV控制

我們需要在標簽調用代碼前加入

中間為標簽調用代碼

以上三步就可以完美完成符合SEO優化的3D動態標簽,讓你的標簽轉起來吧。

最後我再分享一個wordpress彩色標簽的函數代碼給大家,大家希望wordpress 3D動態標簽是彩色字的朋友,可以將一下函數代碼添加到wordpress函數模板裡面。

//彩色標簽雲

function colorCloud($text) {

$text = preg_replace_callback('||i', 'colorCloudCallback', $text);

return $text;

}

function colorCloudCallback($matches) {

$text = $matches[1];

$color = dechex(rand(0,16777215));

$pattern = '/style=('|")(.*)('|")/i';

$text = preg_replace($pattern, "style="color:#{$color};$2;"", $text);

return "";

}

add_filter('wp_tag_cloud', 'colorCloud', 1);

以上就是張力分享的3D動態標簽的制作方法,希望對朋友們是有用處的,需要的朋友可以拿去用哦!

本文由張力原創寫作,轉載請注明網址:http://zhangliseo.com/1117.html ,謝謝!

        :更多精彩文章請關注建站教程欄目。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved