使用jQuery和CSS3创建一个支持翻转效果的微/轻博客网站列表
日期:2012-4-10 来源:GBin1.com
今天我们将使用页面元素的翻转效果设计一个微博和轻博网站列表,将使用jQuery的jQuery Flip插件来实现特效。
HTML代码
这里我们使用socialwrapper来包装每一个需要展示的网站,如下:
<div class="socialwrapper"> <div class="social"> <img id="img" src="img/weibo.png" /> <div class="desc"><a href="http://weibo.com/gbin1" target="_blank">http://weibo.com</a></div> </div> </div>
以上代码中我们包含了执行翻转的元素social,其中包含了logo图片和网站详细介绍。
CSS代码
.socialwrapper{ width:200px; height:200px; float:left; margin:5px; position:relative; cursor:pointer; } .social{ background: #303030; height: 100%; margin: 0px; text-align: center; width:100%; margin: 0px; position:absolute; border: 1px solid #505050; border-radius: 5px 5px 5px 5px; }
上面的CSS定义了.socialwrapper和.social的样式定义。这里我们使用圆角效果。
..
...
相关推荐
EdwardSiCong 2020-11-23
85477104 2020-11-17
hhanbj 2020-11-17
81427005 2020-11-11
seoppt 2020-09-13
honeyth 2020-09-13
WRITEFORSHARE 2020-09-13
84483065 2020-09-11
momode 2020-09-11
85477104 2020-08-15
83510998 2020-08-08
82550495 2020-08-03
tthappyer 2020-08-03
84901334 2020-07-28
tthappyer 2020-07-25
TONIYH 2020-07-22
tztzyzyz 2020-07-20
83510998 2020-07-18
81463166 2020-07-17