使用jQuery和CSS3建立一個支持翻轉效果的微/輕博客網站列表

日期:2012-4-10  來源:GBin1.comhtml

使用jQuery和CSS3建立一個支持翻轉效果的微/輕博客網站列表

在線演示  本地下載 jquery

今天咱們將使用頁面元素的翻轉效果設計一個微博和輕博網站列表,將使用jQuery的jQuery Flip插件來實現特效。web

HTML代碼

這裏咱們使用socialwrapper來包裝每個須要展現的網站,以下:app

<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的樣式定義。這裏咱們使用圓角效果。網站

.social:hover {
    border:1px solid #505050;
    -moz-box-shadow:0 0 20px #AAA inset;
    -webkit-box-shadow:0 0 20px #AAA inset;
    box-shadow:0 0 20px #AAA inset;
}

以上代碼定義了鼠標懸浮的特效,這裏咱們使用box-shadow屬性來設置邊框陰影效果。插件

.social .desc{
    color: #fff;
    font-size: 20px;
    height: 200px;
    line-height: 200px;
    margin: 0 auto;
    min-height: 200px;
    min-width: 200px;
    text-align: center;
    width: 200px;
    float:left;
    position: absolute;
    background: #404040;
    display:none;
    font-size:14px;
    font-weight: 600;
    font-family: "Microsoft Yahei";
    padding:0;
    text-shadow: 2px 2px 1px #606060;
}

以上代碼定義了詳細信息內容,這裏使用了text-shadow來定義一個字體的陰影效果。設計

...code

...htm

原文來自:使用jQuery和CSS3建立一個支持翻轉效果的微/輕博客網站列表

相關文章
相關標籤/搜索