图像<区域>有哪些合理的替代方案?地图?区域>
仍然是处理不规则导航菜单的最佳方法,还是有更好的方法?
我的导航菜单如下所示:
Is <area>
still the best way to handle irregular navigation menus, or is there a better way?
My navigation menu looks like this:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用标准导航标记:
然后进行 2D CSS 转换(围绕 Y 轴倾斜元素):
请参阅此 fiddle 获取实例。有关浏览器支持信息,请参阅此。
如何编写 IE 过滤器
通过在 google 中输入以下内容将 -10 度转换为弧度:
您将得到:
然后将值插入 M21。
为什么要使用此方法
nav
元素时。You can use standard navigation markup:
and then do a 2D CSS transform (skew the element around the Y axis):
See this fiddle for a live example. See this for browser support info.
How to write the IE filter
Convert -10 degrees to radian by typing this in google:
You will get:
Then plug the value in M21.
Why would you use this method
nav
element which is used by screen readers to figure out where the navigation is.在没有看到任何代码或任何你实际想要完成的事情的情况下,我可以含糊地说,是的。您可以使用带有 id 列表项的列表,并手动将它们放置在您的页面上。
但同样,如果没有看到你想要完成什么,就很难说。
Without seeing any code or anything of what you're actually trying to accomplish, I can say vaguely, yes. You can use lists with id'd list items and manually place them on your page.
But again, without seeing what you're trying to accomplish it's very hard to say.