Javascript:如何创建圆角选项卡菜单?
您知道我可以下载类似这样的圆角选项卡吗? 或者我怎样才能创建这样的选项卡? 选项卡菜单中是否需要使用图像? 我用的是:
-moz-border-radius-topleft: 5px;
-moz-border-radius-topright: 5px;
border-top-left-radius:5px;
border-top-right-radius:5px;
但它并不完美。 您知道有关圆角选项卡的任何有用的链接/教程吗?
Do you know any rounded corners tab like this one that I can download? Or how can I create a tab like that? Do the use of images in the tab menus are required or not? I used the:
-moz-border-radius-topleft: 5px;
-moz-border-radius-topright: 5px;
border-top-left-radius:5px;
border-top-right-radius:5px;
but it is not perfect. Do you know any helpful links/tutorials about rounded corner tab?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
最好看的圆角总是使用图像完成的。 其他的都是浏览器最好的尝试,可能并不是你想要的。 仅使用图像也容易得多。
您只需要为每个角提供一个小图像,并为边框的其余部分提供另一组可平铺的图像。 将其全部插入 CSS 类中,然后就可以开始了。
The best-looking rounded corners are always going to be those done using an image. Anything else is the browser's best attempt, which may not be what you want. It's also far easier to just use images.
You just need a small image for each corner, and another tileable set of images for the rest of the border. Plug it all into CSS classes and you're good to go.
尚未得到所有浏览器的支持,但您可以使用 CSS3 轻松显示圆角,无需图像或 javascript:
更多信息:http://www.css3.info/preview/rounded-border
这应该允许在旧浏览器中优雅降级(只是不会显示为圆形),但我仍然会如果您想确保所有用户都有相同的体验,则倾向于使用图像。
Not yet supported by all browsers, but you can use CSS3 to easily display rounded corners without the need for images or javascript:
More info: http://www.css3.info/preview/rounded-border
This should allow for graceful degradation in older browsers (just won't show as rounded), but I'd still be inclined to go with images if you want to ensure all your users have the same experience.
为什么不使用 jQuery UI? 他们有漂亮的圆形标签。
请参阅http://jqueryui.com/themeroller/#themeGallery
Why don't u use jQuery UI? They have nice rounded tabs.
See http://jqueryui.com/themeroller/#themeGallery