案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<style type="text/css">
4
img
5
{
6
position:absolute;
7
top:100px;
8
}
9
</style>
10
<script type="text/javascript">
11
function clipImage()
12
{
13
document.getElementById("img1").style.clip="rect(0px,50px,50px,0px)";
14
}
15
</script>
16
</head>
17
<body>
18
19
<img id="img1" border="0" src="/img/eg_sun.gif" />
20
21
<input type="button" onclick=clipImage() value="Clip image" />
22
23
</body>
24
</html>
25