带阴影的 JQueryUI 选项卡
Stackers,我需要在之前使用 JQueryUI Tabs 插件创建的选项卡周围放置阴影。阴影必须位于选项卡的右侧和顶部。
使用 moz-box-shadow 或类似的可能会很棒,但我的应用程序也应该在 IE 上查看。
我的 JQuery 代码(非常简单):
$("#tabs").tabs();
它是这样的:
有人知道该怎么做吗?谢谢!
Stackers, I need to put shadows around my tabs previously created using JQueryUI Tabs plugin. Shadows must be on the right and top of tabs.
Using moz-box-shadow or similar could be great, but my application should be view on IE too.
My JQuery code (very simple):
$("#tabs").tabs();
This is how it looks:
Anybody know how to do this? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 PIE.htc css3 阴影可以在 Internet Explorer 6+ 中工作:http://css3pie.com/(提供演示)
PIE 阴影看起来比 IE 阴影/投影滤镜更好。
With PIE.htc css3 shadows do work in internet explorer 6+ : http://css3pie.com/ (demo available)
The PIE shadows look better than the IE shadow/dropshadow filters.
您可以使用适用于真实浏览器的 CSS3 和适用于 IE 的过滤器来执行此操作:
向您的选项卡添加一个类
tab-shadow
并使用此 CSS:并不是说它只能在设置了边框的 IE 中工作(来自个人经历。)
这应该就是你想要的:)
You can do this using CSS3 for real browsers and a filter for IE:
Add a class to your tab
tab-shadow
and use this CSS:Not that it will only work in IE with a border set (from personal experience.)
This should be what you're after :)