HTML Marquee - 静态文本

时间:2015-05-24 19:47:45

标签: html css marquee

我想知道HTML选框是否允许在控件(或容器)的开头使用静态文本,所以当文本向左滑动时,它会滑动传递文本吗?

例如。

我正在查看与左边静态对齐的日期,数据库中的文本将滑动传递它,然后从右边重新出现。

HTML:

 <marquee onmouseover="this.stop();" onmouseout="this.start();" 
    class="html-scroller" direction="left" behavior="scroll" scrollamount="12">
   <p style="color:#626060; font-weight:bold">24/05/2015 - Some Infor here</p>

CSS:

.html-scroller 
{
    height:30px;
    border:solid;
}

当然,上面的代码会使包含日期幻灯片的文本通过控制器的边缘。

看看大写的例子,没有任何东西,所以如果我必须改变它,那么创建我自己的东西会更容易吗?

1 个答案:

答案 0 :(得分:1)

I dont think there is a partial static text solution for marquees. I'd do this:

HTML

<div class="container">
  <div class="date">24/05/2015</div>
  <div>
    <marquee
      onmouseover="this.stop();"
      onmouseout="this.start();"
      direction="left"
      behavior="scroll"
      scrollamount="12">
      <p>
        Some Infor here
      </p>
    </marquee>
  </div>
</div>

CSS

.container
{
    position: relative;
    border: 2px solid #626060;
    box-sizing: border-box;
}

.container,
.container .date {
    padding: 10px;
    background-color: #fff;
    color: #626060;
    font-weight: bold;
}

.container .date {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.container marquee {
    line-height: 0.8;
}

.container marquee p {
    margin: 0;
}

http://jsfiddle.net/1wzxywtn/