就近聖誕,當然要加入一些聖誕元素呢~~。
這個demo 就教你利用webkit 的css animation 去做一個閃閃下的button~~..
因為是利用了webkit 的關係,所以~~…..只可以做到safari, google chrome show 到出來。
做法就很簡單 (當然是因為利用了css 的animation)
//Animation
@-webkit-keyframes greenPulse {
from { background-color: #749a02; -webkit-box-shadow:: 0 0 9px #333; }
50% { background-color: #91bd09; -webkit-box-shadow:: 0 0 18px #91bd09; }
to { background-color: #749a02; -webkit-box-shadow:: 0 0 9px #333; }
}
//把 button 的class 加入effect
a.green.button {
-webkit-animation-name: greenPulse;
-webkit-animation-duration: 2s;
-webkit-animation-iteration-count: infinite;
}
Source: http://www.zurb.com/playground/radioactive-buttons



Recent Comments