用于模态对话框的语义准确的HTML5元素

前端之家收集整理的这篇文章主要介绍了用于模态对话框的语义准确的HTML5元素前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想知道我的一些网站开发人员/设计师感觉什么会是一个最好的HTML 5元素,用于一个模式对话框,如灯箱,超级盒,厚箱或任何你最喜欢的风格可能会发生。

由于这些类型的UI不遵循“正常”网页的典型流程(显然,根据HTML 5规范大纲本质上是一个博客),它们并没有真正地像“标题>,< nav>,< section>,< article>或< footer> (除了其他新的“语义”元素)之外。

当然,总是有< div>,但是,我只是有点想,可能会有更多的语义准确的东西。

不幸的是,没有< modal>元件。你对于规范中是否应该有一个想法有什么想法?既然元素不存在,那么你的下一个最佳选择是什么?

解决方法

<一旁>似乎合适。当前规格与相关部分粗体:

The aside element represents a section
of a page that consists of content
that is tangentially related to the
content around the aside element,and
which could be considered separate
from that content.
Such sections are
often represented as sidebars in
printed typography.

The element can be used for
typographical effects like pull quotes
or sidebars,for advertising,for
groups of nav elements,and for other
content that is considered separate
from the main content of the page.

在这种情况下,模态与导致它的动作“切向相关”。虽然您通常可能希望将其放在边栏中,语义内容的目的之一是实现不受物理页面特性限制的多功能性。规范的最后一句话似乎暗示了这种多功能的用例。

原文链接:https://www.f2er.com/html5/168976.html

猜你在找的HTML5相关文章