3

我在选取框标签中有一些文字。

<marquee direction="left" scrollamount="4">
 Test Test Test Test Test
</marquee>

我正在使用 html 5 和 css 3。当我在 w3c 验证器中检查我的 html 时,它显示以下错误。

 Element marquee not allowed as child of element div in this context. (Suppressing further errors from this subtree.)

        <marquee direction="left" scrollamount="4"> 

如何解决这个问题?

4

3 回答 3

6

Marquee 标记不是 html5(根本不是 html,而是 1995 年以来的 Microsoft 专有标记)

你可以 :

  • 使用 javascript 为您的文本设置动画
  • 使用 css 动画(不完全兼容浏览器
  • 使用css3 marquee(不完全兼容浏览器)
  • 使用 marquee 并忽略 W3C 警告(marquee 完全兼容浏览器,即使在 iOS safari 中也是如此!)
  • 不要使用选框效果(很难看)

小心 W3C 验证器,它并不总是知道所有 W3C 规范!

于 2013-02-28T08:38:49.573 回答
3

marquee 标签在 HTML5 中已经过时,但在 CSS3 中返回(参见 http://www.w3.org/TR/css3-marquee/)。

于 2013-07-03T12:26:49.220 回答
0

使用 CSS3 Marquee 代替它

html

<p class="marquee"><span>This is your sample text.</span></p>

css

/* Make it a marquee */
.marquee {
    width: 450px;
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    text-indent: 0;
    animation: marquee 15s linear infinite;
}

.marquee span:hover {
    animation-play-state: paused
}

/* Make it move */
@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}
于 2017-09-27T07:23:45.923 回答