Disable highlight text$BlogItemTitle$>
11/21/2011$BlogDateHeaderDate$> at 18:23$BlogItemDateTime$>
经过试了以后,发觉这个比较有效~
当然如果要套用你的文字设定,正篇抄走也不是没有可能的哦!只是被抄袭的几率会比较低
Copy N Paste in HTML/JavaScript
代码:
<script type="text/javascript">
/***********************************************
* Disable select-text script- © Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/
//form tags to omit in NS6+:
var omitformtags=["input", "textarea", "select"]
omitformtags=omitformtags.join("|")
function disableselect(e){
if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
return false
}
function reEnable(){
return true
}
if (typeof document.onselectstart!="undefined")
document.onselectstart=new Function ("return false")
else{
document.onmousedown=disableselect
document.onmouseup=reEnable
}
</script>
Labels: 部落教学 $BlogItemBody$>
0 lovely comments
header hover的效果【消失】$BlogItemTitle$>
11/20/2011$BlogDateHeaderDate$> at 15:26$BlogItemDateTime$>
1.打开edit html,在Expand widget Template打勾勾,按F3查找:
#header 或者 .header
2.把下面的代码paste在上面代码的后面:
#header:hover {
padding-left:160px;
-webkit-transition: .8s;
-webkit-transform: rotate(6deg);
opacity:.01;
}
3.Save Template,完啦~Labels: 部落教学 $BlogItemBody$>
0 lovely comments
For ♥$BlogItemTitle$>
11/17/2011$BlogDateHeaderDate$> at 16:21$BlogItemDateTime$>
有一些补充 ♥
$BlogItemBody$>
0 lovely comments
|
Disable highlight text$BlogItemTitle$>
11/21/2011$BlogDateHeaderDate$> at 18:23 $BlogItemDateTime$>
经过试了以后,发觉这个比较有效~
当然如果要套用你的文字设定,正篇抄走也不是没有可能的哦!只是被抄袭的几率会比较低
Copy N Paste in HTML/JavaScript
代码:
<script type="text/javascript">
/***********************************************
* Disable select-text script- © Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/
//form tags to omit in NS6+:
var omitformtags=["input", "textarea", "select"]
omitformtags=omitformtags.join("|")
function disableselect(e){
if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
return false
}
function reEnable(){
return true
}
if (typeof document.onselectstart!="undefined")
document.onselectstart=new Function ("return false")
else{
document.onmousedown=disableselect
document.onmouseup=reEnable
}
</script>
Labels: 部落教学 $BlogItemBody$>
header hover的效果【消失】$BlogItemTitle$>
11/20/2011$BlogDateHeaderDate$> at 15:26 $BlogItemDateTime$>
1.打开edit html,在Expand widget Template打勾勾,按F3查找:
#header 或者 .header
2.把下面的代码paste在上面代码的后面:
#header:hover {
padding-left:160px;
-webkit-transition: .8s;
-webkit-transform: rotate(6deg);
opacity:.01;
}
3.Save Template,完啦~Labels: 部落教学 $BlogItemBody$>
For ♥$BlogItemTitle$>
11/17/2011$BlogDateHeaderDate$> at 16:21 $BlogItemDateTime$>
有一些补充 ♥
$BlogItemBody$>
|