动态将 CSS border-radius % 值转换为 px
我的 CSS 有一个包含 border-radius: 50%
的 circle
类。不幸的是,某些浏览器不支持%,并将圆形呈现为正方形。我想为不支持百分比的浏览器动态地将百分比转换为像素值。
我如何使用 JavaScript / jQuery 来完成此任务?
My CSS has a class circle
that contains border-radius: 50%
. Unfortunately, some browsers don't support the %, and render the circle as a square. I want to dynamically convert the percentages to pixel values for browsers that don't support the percentages.
How can I accomplish this with JavaScript / jQuery?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅示例 http://jsfiddle.net/cZqQ8/
显然你应该使用
-moz-border -radius 与 mozilla 一起使用
See the example http://jsfiddle.net/cZqQ8/
Apparently you should use
-moz-border-radius
to work with mozilla试试这个家伙:
Try this dude :