1. Win:開始功能表
2. Win+A 打開重要訊息中心
ζ 修 - Hugo - 發表在 痞客邦 留言(0) 人氣(1)
nginx 1.13.6
MySQL Server 5.6
php 5.6.28
php 7.0.6
ζ 修 - Hugo - 發表在 痞客邦 留言(0) 人氣(21)
CSS 常用的字體名稱︰
Mac OS:
華文細黑:STHeiti Light [STXihei]
華文黑體:STHeiti
華文楷體:STKaiti
華文宋體:STSong
華文仿宋:STFangsong
儷黑 Pro:LiHei Pro Medium
儷宋 Pro:LiSong Pro Light
標楷體:BiauKai
蘋果儷中黑:Apple LiGothic Medium
蘋果儷細宋:Apple LiSung Light
ζ 修 - Hugo - 發表在 痞客邦 留言(0) 人氣(86)
<script type="text/javascript">
function load_page() {
var date=Date.parse("2015-06-15 16:00:00".replace(/-/g,"/"));
var now=new Date();
ζ 修 - Hugo - 發表在 痞客邦 留言(0) 人氣(48)
CSS 這個效果挺好的
<style type="text/css">
.ttp{
ζ 修 - Hugo - 發表在 痞客邦 留言(0) 人氣(5,088)
在痞客邦後台,如果 "側邊攔位設定",你打下方程式碼
<object width="230" height="230">
<param name="movie" value="http://www.youtube.com/v/3Xolk2cFzlo&hl=zh_TW&fs=1&">
</param>
<param name="allowFullScreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param>
<param name="wmode" value="transparent">
<embed src="http://www.youtube.com/v/3Xolk2cFzlo&hl=zh_TW&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="230" height="230"></embed>
</object>
ζ 修 - Hugo - 發表在 痞客邦 留言(0) 人氣(124)
ζ 修 - Hugo - 發表在 痞客邦 留言(0) 人氣(47)

按一下這裡開小視窗
<A HREF="10.html" onClick="window.open('http://www.facebook.com', 'Hugo', config='height=300,width=300')"> 按一下這裡開小視窗 </A>
關閉一下請按
ζ 修 - Hugo - 發表在 痞客邦 留言(0) 人氣(149)
將會執行
|
Event 指令
|
當訪客按一個Button或連結
|
onClick |
當訪客改變 text, textarea, 和 select element 當改變之後 |
onChange |
當滑鼠點到一個連結時 |
onMouseOver |
當滑鼠箭頭移開一個連結時 |
onMouseOut |
當訪客Submit一個<form>時 |
onSubmit |
當訪客重新設定視窗大小時 |
onResize |
當訪客讀取網頁時 |
onLoad |
當訪客離開網頁時 |
onUnload |
ζ 修 - Hugo - 發表在 痞客邦 留言(0) 人氣(82)

按鈕指定時間開啟
<button id="test">我同意</button>
<script type="text/javascript">
var counts=10;
var counting;
function countDown()
{
var test = document.getElementById("test");
test.disabled = true;
counting = setInterval("countOne();",1000);
}
function countOne()
{
var test = document.getElementById("test");
test.firstChild.nodeValue = "我同意"+counts; if(counts-- == "0") {
test.firstChild.nodeValue = "我同意";
test.disabled = false; clearInterval(counting); }
}
</script>
ζ 修 - Hugo - 發表在 痞客邦 留言(0) 人氣(126)