好玩的样式—放大效果

2008-02-23 08:34:47来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

1.寻寻觅觅

先要找个到好效果~才能抄
如: www.cssplay.co.uk www.cssbeauty.com 等都能常常看到.

今天不小心路过cssplay
www.cssplay.co.uk/menus/magnifier2.html
好像好好玩滴样子

自己开起topstyle来试一下
建议大家看到好玩的样式~不要急着看他的CSS~没意义

2.自己动手~丰衣足食

运行代码框

[Ctrl A 全部选择 提示:你可先修改部分代码,再按运行]

做完自我感觉还不错

主要就是a:hover position: absolute; margin 三个.不过做后才发现~IE5的A失效了

3.取长补短

是时候看人家的CSS的~`虽然同样也是IE5的A失效

#enlarge {padding:0; margin:2em auto; list-style-type:none; width:240px; height:40px;}
#enlarge li {display:block; float:left; width:40px; height:40px; position:relative;}
#enlarge li a {display:block; width:40px; height:40px; background:transparent; overflow:hidden; position:relative;}
#enlarge li a img {width:100%; height:100%; border:0;}
#enlarge li a:hover {position:absolute; left:-20px; top:-20px; width:80px; height:80px; z-index:100;}

FT ~写得比人家多了一个定义~~
他的方法是用position:relative 配合left top 都是一样用负值来搞的~

4.举一反三

突然想到最近要写的擦车论坛~帖子下面的分页可以用这样来玩~

运行代码框