發表文章

目前顯示的是 7月, 2013的文章

【Google Site】Jquery animate練習

圖片
繼前幾天的fadeto,今天來個變形動態,娛樂一下~ html部分同樣來個基調四色,這次的控制class同樣設定成 .box <div class="box blue"></div> <div class="box red"></div> <div class="box green"></div> <div class="box yellow"></div> css部分和上次一樣,僅是上色、排列和寬高。 <style> .box { width: 100px; height: 100px; padding: 10px; color:white; vertical-align:middle; border: 1px solid #fff; float: left; margin: 5px;} .blue{ background: #3af;} .red{ background: red;} .green{ background: green;} .yellow{ background: yellow;} </style>

【Google Site】Jquery Fadeto練習

圖片
好久沒有做GoogleSite實驗,趁著着週末天光來寫一篇~話說GoogleSite htmlBox原本引入的Jquery版本已經進化到1.8.1,如果還是使用舊有1.6或是1.5的版本,會有畫面消失的情事發生~所以記得要更新一下。#1