DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> CSS入門知識 >> DIV十CSS布局 >> 布局實例 >> 定義漸變邊框給圖片加陰影
定義漸變邊框給圖片加陰影
編輯:布局實例     

一般我們可以使用背景圖的方式給圖片添加陰影,但對於不固定尺寸的圖片如何實現呢?

  我們可以采取“視覺欺騙大法”——定義漸變邊框來實現

  代碼:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Language" content="zh-CN" />
<title></title>
<style type="text/css" >
body {background:#2e334d;}
img {border:none;}
a.pic-shadow {display:inline-block;zoom:1;padding:1px;background:#262a3f;border:solid #2b3048 1px;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;}
a.pic-shadow img {padding:1px;background:#13151f;border:solid #1e2132 1px;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;}
</style>
</head>
<body>
<a class="pic-shadow" href="#" title=""><img src="止.png" alt="" title="" /></a>
</body>
</html>

border-radius:5px;
-moz-border-radius:5px;
-webkit-border-radius:5px;

  上面這段定義是各標准浏覽器中圓角定義,用以更專業地欺騙眼睛

  顏色代碼可以在ps中做好外發光效果後拾取。

  我上面的效果是[柔和]、[擴展0]、[大小5px]、[顏色#000]其余默認

  當然了,特殊要求的話可以使用ie的濾鏡來實現更華麗的陰影.

 

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved