loading
Please wait while loading...

查看詳情 Mysql Date Time 日期和時間函數

當我們處理日期和時間的資料時, 很多時會在 php 處理好再存回 MySQL 數據庫, 其實 MySQL 本身已有很多 Date time 的函數, 只要善加利用, 比起使用 php 可是更加便利哦~~

以下內容轉自: http://wen198599.pixnet.net/blog/post/22450019

...........

查看詳情 HoverIntent 擴充 jQuery Hover

jQuery hoverIntent 是一套用以延遲滑鼠 mouseover 和 mouseout 事件的插件, 可有效防止用戶在一個物件上連續觸發多次事件的情況。

傳統的 hover:

$("#layer").hover(function() {
    //mouserover event
},function() {
    //mouserout event
});

使用hoverintent:

$("#layer").hoverIntent({
	interval: 500,
	over: function(){
		//mouserover event
	},
	timeout: 500,
	out: function(){
		//mouserout event
	}
});
...........

查看詳情 CSS3 揭頁效果

之前在Joomla! 看過 Dashboard 的 Box Mouseover 時有揭頁效果, 感到甚為神奇, 最初以為是用 js 做出的效果, 同事還用了半天時間去研究, 最後都沒研究成功, 我在腦海中也想不出方法來...

今天發白日夢時突然靈機一動, 想到了前一陣子學會的 CSS3 Transition Animation, 用 CSS3 不就可以做到!!坐言起行, 於是馬上便來實作, 果然成功做到了想要的效果 ( 請用firefox或chrome )

 

 

代碼如下:

...........

查看詳情 將子域名重寫顯示子目錄的內容

分享一個 URL Rwrite 的技術, 將子域名重寫輸出顯示為子目錄的內容

例如:
http://hello.cambyliverson.com
你會看見/hello目錄中的內容
但網址會保留顯示 http://hello.cambyliverson.com
以下是相關的 Rewrite 代碼

RewriteCond %{HTTP_HOST}   ^[www\\.]*sub-domain-name.domain-name.com [NC]
RewriteCond %{REQUEST_URI} !^/sub-domain-directory/.*
RewriteRule   ^(.*)  /sub-domain-directory/$1  [L]

查看詳情 使用 CSS3 制作簡單的變換特效

CSS3 提供一個簡單的語法用以制作動態變換效果而不需要使用到 Flash 或 javascript, 它的使用方法非常簡單, 只需在你想要制作特效的原樣式中加入 transition 屬性即可, 以下是一個簡單的例子, 對應的效果可參考頂部的菜單列:

#top_menu li a {
	color: #FFF;
	padding: 5px 10px;
	border-radius: 10px;
	text-decoration: none;

	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
}
#top_menu li a:hover {
	background-color: #F9C;
	color: #09F;
}

The result you can refer to the top menu on this page by using firefox or chrome.

1 2 3 4 5 6 7 8