PS 界面介绍



1)移动工具
2)包围工具
3)多边形套索
4)选择工具
5)剪裁工具
6)切片工具
7)污点修复画笔工具
8)画笔 / 铅笔工具
9)仿制图章工具
10)历史记录艺术画笔工具
11)橡皮擦工具
12)渐变 / 漆桶工具
13)涂抹工具 / 模糊工具 / 消尖工具
14)减淡工具
15)钢笔工具
16)文字工具
17)路径选择工具
18)形状工具
19)注释工具 / 注意工具
20)颜色采取器
21)手工具
22)放大镜工具
23)自动变回黑白的前景色和背景色
24)前后调转前景色和背景色
25)前景色和背景色
26)蒙版
27)更换银幕模式
28)显示图片的位置
29)a - 颜色 / b - 调色器 / c - 样式
30)图层




为评论箱添加背景


BlUe TeArS 的教程 。

效果图 :


寻找 /* Comments 。

在 /* Comments
----------------------------------------------- */

之后添加

.comments {
  background-image: url(图片网址);
}



如何用任何字体制作空心字


效果图 :


我用的是 Photoshop CS3 哦 ~

选择透明的纸张 ,按 Text ,打你要的字 。



向着 Text 的 Layer 右键 ,选择 Blending Options 。




打钩 Drop Shadow ( 要不要都可以 ) 和 Stroke 。

数字依照个人喜爱调 。



然后把 Fill 调到 0 % 就行了 。



添加 Click To Enter



BluE TeArS


把下代码 放在 ]]</b:skin> 上面

* to top */ 

#toTop { width:100px;background:none;border:0px solid #ccc;text- 

align:center;padding:5px;position:fixed;bottom:10px;right:10px;cursor:pointer;color:#666;text- 

decoration:none; } 

</style></head> 
<script language="javascript" type="text/javascript"> 
/* toggle() checks to see if the images has already been faded 
or not and sends the appropriate variables to opacity(); */ 
function toggle(el,milli) { 
// Get the opacity style parameter from the image 
var currOpacity = document.getElementById(el).style.opacity; 
if(currOpacity != 0) { // if not faded 
fade(el, milli, 100, 0); 
} else { // else the images is already faded 
fade(el, milli, 0, 100); 
} 
} 
/* changeOpacity() uses three different opacity settings to 
achieve a cross-browser opacity changing function. This 
function can also be used to directly change the opacity 
of an element. */ 
function changeOpacity(el,opacity) { 
var image = document.getElementById(el); 
// For Mozilla 
image.style.MozOpacity = (opacity / 100); 
// For IE 
image.style.filter = "alpha(opacity=" + opacity + ")"; 
// For others 
image.style.opacity = (opacity / 100); 
} 
/* fade() will fade the image in or out based on the starting 
and ending opacity settings. The speed of the fade is 
determined by the variable milli (total time of the fade 
in milliseconds)*/ 
function fade(el,milli,start,end) { 
var fadeTime = Math.round(milli/100); 
var i = 0; // Fade Timer 
// Fade in 
if(start < end) { 
for(j = start; j <= end; j++) { 
// define the expression to be called in setTimeout() 
var expr = "changeOpacity('" + el + "'," + j + ")"; 
var timeout = i * fadeTime; 
// setTimeout will call 'expr' after 'timeout' milliseconds 
setTimeout(expr,timeout); 
i++; 
} 
} 
// Fade out 
else if(start > end) { 
for(j = start; j >= end; j--) { 
var expr = "changeOpacity('" + el + "'," + j + ")"; 
var timeout = i * fadeTime; 
setTimeout(expr,timeout); 
i++; 
} 
} 
} 
</script> 
<div class="input" onClick="javascript:toggle('wise', 3000); this.style.display='none'; 
document.getElementById('june').style.display=''"> 
<center><img src="图片网址" 
style="opacity:0.4;filter:alpha(opacity=40)" 
onmouseover="this.style.opacity=1;this.filters.alpha.opacity=100" 
onmouseout="this.style.opacity=0.7;this.filters.alpha.opacity=40"/></center> 
</div> 
<div id="wise" style="filter : alpha(opacity=0); -moz-opacity : 0; opacity : 0;"> 
<div id="june" style="display : none;"> 
<body>




Scrollbar 美化( 三种美化 )


模板 > 修改 HRML > Ctrl + F 寻找 ( 代码添加上面就对了 )

]]></b:skin>

第一种是表面而已的 
( 如果是要第二种或是第三种就必须添加以下代码 )

::-webkit-scrollbar {
height: 12px;
width: 15px;
background:#333333;
}

::-webkit-scrollbar-thumb {
background: #555555;
}

第二种是经过是变色 
( 如果没有加第三种那你按 scrollbar 时的颜色是第二种 )

::-webkit-scrollbar:hover {

height: 12px;
width: 15px;
background:#333333;
}

::-webkit-scrollbar-thumb:hover {
background: #B3B3B3;
}

第三种是激活 scrollbar 时的变色代码
( 激活的意思是按着 srcollbar 的意思 )

::-webkit-scrollbar:active {

height: 12px;
width: 15px;
background:#333333;
}

::-webkit-scrollbar-thumb:active {
background: #ffffff;
}


PS :红色字的都能改哦 ~ ,不明白留言问我吧 ~



制作超链接


什么是超链接 ?

超链接是当你按超链接时会带你到另一个网站 。( 越讲越不知道讲什么 XD )

<a href="网址">网址名称 / 点我或其他字眼</a>

如果你要用图片做超连接的话就看以下代码 。

<a href="网址"><img src="图片网址"></a>


Back To Top


淇爱峻、 的 Back To Top ,其他朋友喜欢的话也能拿哦 ~





经过连接时出现 Text-shadow


淇爱峻、 的教程

效果图 :


登入部落格 > 模板 > 修改 HTML


然后 Ctrl + F 寻找 a:hover {

在 a:hover { 后面添加以下代码

text-shadow: 0 0 0.2em #00FFFF , 0 0 0.2em #00FFFF;

添加后如下图 :


然后保存就行啦 !



Hello Kitty 状态图







用图片做框框( 原创教程 )




Hallo ~ I am this effect  :D


PS :这效果很像 Google 大哥才能看到 。

我只提供代码 ,你们看看要用在哪里 。


<center><div style="-webkit-border-image: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEieUB6kgdOJ2dmCtQPXR_OBGYIuDR5L7vJbSLB6h1v_zOVniHUsZas_wx5BiLeeVGahQTOy32R_bVgtQ9hXKqfdw6UKmJL9z2p-2U5ydSQ9DljaSzRwFUt036n4UZmscdydhxkAaOnVkyA/s1600/1.png) 10/10px repeat; padding: 3px; width: 150px;">
<div style="font-family: coming soon; text-align: center;">
内容</div>
</div>
</center>

粉色隐蔽式 ChatBox










蕾丝系列整体背景图 4


拿图方法 :

1)点击图片 ,复制图片网址 。


使用方法 :

1)Copy 以下代码
            
 <style type="text/css">body {background-image:url("图片 Direct Link"); background-position: center; background-repeat: no-repeat; background-attachment: fixed; }</style>

2)登入部落格 > 布局 > HTML > Paste 刚刚 Copy 的代码 > 更改图片 Direct Link

PS :

1)如果位置不对 ,就到模板设计器更改整体部落格的宽度 。

2)如果不满意效果 ,就把 HTML 删除即可 。