CSS3 中的径向渐变

发布于 2024-11-09 06:16:16 字数 1436 浏览 1 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

送君千里 2024-11-16 06:16:16

您可以在这里使用这个工具。当您生成所需内容时,将为您提供代码。
http://www.westciv.com/tools/radialgradients/index.html

http://gradients.glrzad.com/

You can play with this tool here. Will give you the code as you generate what you want.
http://www.westciv.com/tools/radialgradients/index.html

http://gradients.glrzad.com/

妥活 2024-11-16 06:16:16

径向渐变现在实施混乱,Safari 不支持椭圆形径向背景(Webkit Nightly 支持,所以对 Safari 的支持即将推出)。 Chrome有很多版本我不确定,而且IE9也不支持。

所以我想说你最好的选择是通过插入框阴影来伪造它:

.shadow {
  height: 80px;
  box-shadow: inset 0 75px 75px #fff, 
              inset 0 50px 50px #fff,
              inset 0 20px 20px #fff,
              inset 0 5px 5px #fff;

  background: #ccc;
}

http://jsfiddle.net/nmtHf/

Radial gradients are in an implementation mess right now, Safari doesn't support elliptical radial backgrounds (Webkit Nightly does, so support for Safari is coming soon). Chrome has so many versions I'm not sure about it, and IE9 doesn't support them.

So I'd say your best option is faking it through inset box shadows:

.shadow {
  height: 80px;
  box-shadow: inset 0 75px 75px #fff, 
              inset 0 50px 50px #fff,
              inset 0 20px 20px #fff,
              inset 0 5px 5px #fff;

  background: #ccc;
}

http://jsfiddle.net/nmtHf/

人│生佛魔见 2024-11-16 06:16:16

今年深度报道了 Graident 的 24 种方法,如下文章:
http://24ways.org/2010/everything-you-wanted -to-know-about-gradients

在底部,他们用了整个部分来介绍径向渐变,
给你两篇建议阅读的文章:

MDN
Safari

我建议发布 robx 工具,但如果您像我一样,您喜欢额外阅读以了解事物如何工作。

24 Ways covered Graidents in Depth this Year with the following article:
http://24ways.org/2010/everything-you-wanted-to-know-about-gradients

Towards the bottom they spend a whole section on radial graidents and
give you two articles of suggested reading:

MDN
Safari

I would suggest the tool robx posted, but if your like me, you like extra reading on understanding of how things work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文