2013年12月17日 星期二
播種用泥土比較-Klasmann,Kekkila,Biolan,靚土
Klasmann 質地細緻,這款很好,以後就用這種泥炭土播種吧
Kekkila 質地粗糙,透水較慢,但是種黃花矮牽年粉衣種子反應較好,可再觀察其他粉衣種子
Biolan 質地細,但是透水較慢
靚土 質地細,但是有很多配料吧,有時會看不清種子在哪裡,較貴
Kekkila 質地粗糙,透水較慢,但是種黃花矮牽年粉衣種子反應較好,可再觀察其他粉衣種子
Biolan 質地細,但是透水較慢
靚土 質地細,但是有很多配料吧,有時會看不清種子在哪裡,較貴
CSS 筆記
tr:hover td{background:none;} -表格列滑過變色
img {filter:alpha(opacity=70);opacity:0.7;zoom:1;} -圖片半透明設定
Flash動畫的背景透明語法
1. param name="wmode" value="transparent"/
1. param name="wmode" value="transparent"/
2. EMBED src=連結網址 width=寬度 height=高度 wmode="transparent"
選取器
選取整個網站裡表格邊框設定為0者
table[border="0"]
選取整個網站裡有電子郵件者
a[href^="mailto:"]
CSS 選擇
[attribute]
a[target]
[attribute="value"]
a[target="_blank"]
[attribute~="value"] 包含字 需單字
[title~="flower"]
[attribute|="value"] 開頭以(必須是單字或-分隔)
[class|="top"]
[attribute^="value"] 開頭以
[class^="top"]
[attribute$="value"] 結尾以
[class$="test"]
[attribute*="value"] 包含
[class*="te"]
include語法
!--#include file="head.asp"--
2. JS表單欄位提示文字 http://digitalbush.com/projects/watermark-input-plugin/
Youtube 影片嵌入碼
原本的
http://www.youtube.com/embed/7aBo_uUcvC4" frameborder="0" allowfullscreen
原本的
http://www.youtube.com/embed/7aBo_uUcvC4" frameborder="0" allowfullscreen
加上自動播放
http://www.youtube.com/embed/7aBo_uUcvC4?autoplay=1&cc_load_policy=1" frameborder="0" allowfullscreen>
加上自動播放與透明
http://www.youtube.com/embed/7aBo_uUcvC4?autoplay=1&cc_load_policy=1?rel=0;wmode=opaque" frameborder="0" allowfullscreen>
jquery 隔行變色 奇偶行變色
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js" type="text/javascript"></script>
</head>
<script type="text/javascript">
$(document).ready(function(){
$(".stripe tr").mouseover(function(){
//如果鼠标移到class为stripe的表格的tr上时,执行函数
$(this).addClass("over");}).mouseout(function(){
//给这行添加class值为over,并且当鼠标一出该行时执行函数
$(this).removeClass("over");}) //移除该行的class
$(".stripe tr:even").addClass("alt");
//给class为stripe的表格的偶数行添加class值为alt
});
</script>
<style type="text/css">
th {
background:#0066FF;
color:#FFFFFF;
line-height:20px;
height:30px;
}
td {
padding:6px 11px;
border-bottom:1px solid #95bce2;
vertical-align:top;
text-align:center;
}
td * {
padding:6px 11px;
}
tr.alt td {
background:#ecf6fc;
}
tr.over td {
background:#bcd4ec;
}
</style>
<body>
<table class="stripe" width="50%" border="0" cellspacing="0" cellpadding="0">
<thead>
<tr>
<th>姓名</th>
<th>年龄</th>
<th>QQ</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td>邓国梁</td>
<td>23</td>
<td>31540205</td>
<td>gl.deng@gmail.com</td>
</tr>
<tr>
<td>邓国梁</td>
<td>23</td>
<td>31540205</td>
<td>gl.deng@gmail.com</td>
</tr>
<tr>
<td>邓国梁</td>
<td>23</td>
<td>31540205</td>
<td>gl.deng@gmail.com</td>
</tr>
<tr>
<td>邓国梁</td>
<td>23</td>
<td>31540205</td>
<td>gl.deng@gmail.com</td>
</tr>
<tr>
<td>邓国梁</td>
<td>23</td>
<td>31540205</td>
<td>gl.deng@gmail.com</td>
</tr>
<tr>
<td>邓国梁</td>
<td>23</td>
<td>31540205</td>
<td>gl.deng@gmail.com</td>
</tr>
</tbody>
</table>
</body>
</html>
訂閱:
文章 (Atom)