現(xiàn)在我們不用photoshop,用css和javascript來做,方法也很簡單!
一、準(zhǔn)備一張圖片,名為photo1.jpg,大小為:240x180;
二、插入一個(gè)表格,表格長x寬設(shè)置為240x180,把cellpadding、cellspacing、border均設(shè)置為0,并把表格的背景設(shè)置為上面的圖片,即代碼為:
<table cellpadding="0" cellspacing="0" border="0"
width="240" height="180" background="photo1.jpg">
</table>
三、建立一個(gè)css樣式,把該樣式應(yīng)用于上面的表格,樣式代碼如下。#000000代表黑色,你也可以換成其他你喜歡的顏色。后面的filter:alpha(opacity=30)是用css濾鏡調(diào)整細(xì)線的透明度。<BR><BR>
<style>
.tvline td{border-top:1 solid #000000;font:1px;filter:alpha(opacity=30)}
</style>
<STRONG>四、</STRONG>在表格中插入一小段javascript代碼:
<BR> <script language="javascript">
for(n=1;n<=90;n++)//循環(huán)次數(shù)為圖片高度的一半;
document.write('<tr><td> </td></tr>')//注意td中間有一個(gè)全角空格;
//document.write('<tr><td style=line-height:1px> </td></tr>')
//考慮到瀏覽器的兼容性,你也可以使用上面這一句
</script>
<BR> 整個(gè)頁面的代碼如下:<BR>
<html>
<head>
<style>
.tvline td{border-top:1 solid #000000;font:1px;filter:alpha(opacity=30)}
</style>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<table class=tvline width="240" height="180"
cellpadding="0" cellspacing="0" border="0" background="photo1.jpg">
<script language="javascript">
for(n=1;n<=90;n++)
document.write('<tr><td> </td></tr>')
</script>
</table>
</body>
</html>
現(xiàn)在保存頁面,預(yù)覽一下效果吧: