首頁 > web前端 > css教學 > CSS3 可以對 SVG 元素套用陰影嗎?

CSS3 可以對 SVG 元素套用陰影嗎?

Patricia Arquette
發布: 2025-01-02 18:32:38
原創
455 人瀏覽過

Can CSS3 Apply Drop Shadows to SVG Elements?

CSS3 SVG 投影

是否可以使用 CSS3 將投影應用於 SVG?

可以,使用CSS 過濾器屬性,即受webkit 瀏覽器、Firefox 34 等現代瀏覽器支持Edge.

語法

filter: drop-shadow(horizontal-offset vertical-offset blur-radius color);
登入後複製

示例

.shadow {
  filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, .7));
}
登入後複製

您也可以在SVG元素中使用此內容:

<svg>
  <rect class="shadow" x="10" y="10" width="200" height="100" fill="#bada55" />
</svg>
登入後複製

適用於舊版瀏覽器的Polyfill

對於Firefox 等瀏覽器

34、IE6,可以使用這個polyfill:
// Usage:
// $(element).cssShadow({horizontal-offset, vertical-offset, blur-radius, color});

$.fn.cssShadow = function(options) {
  // CSS syntax to include the units of the values
  var css = "-webkit-filter: drop-shadow("
    + options.horizontalOffset + "px "
    + options.verticalOffset + "px "
    + options.blurRadius + "px "
    + options.color
    + ");";

  // Applying the css
  return this.css({
    'filter': css,
    '-webkit-filter': css
  });
};
登入後複製

以上是CSS3 可以對 SVG 元素套用陰影嗎?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板