zoukankan      html  css  js  c++  java
  • 图片横向无缝滚动

    CSS代码

    代码
    <style>
    .scroll_div{
      600px;
      margin:0 auto;
      overflow:hidden;
      white-space:nowrap;
      background:#ffffff;
    }
    .scroll_div img{
      120px;
      border:0;
      margin:auto 8px;
      border:1px #efefef solid;
    }
    #scroll_begin,#scroll_end,
    #scroll_begin ul,#scroll_end ul,
    #scroll_begin ul li,#scroll_end ul li{
      display:inline;
    }
    </style>

    HTML代码

    代码
    <div id="scroll_div" class="scroll_div">
      <div id="scroll_begin">
      <ul>
      <li><a href="http://www.heavenfoliage.cn/"><img src="http://www.heavenfoliage.cn/plugin/windsphoto/photofile/20087/2008715194955160.jpg" /></a></li>
      <li><a href="http://www.heavenfoliage.cn/"><img src="http://www.heavenfoliage.cn/plugin/windsphoto/photofile/20087/2008715194955160.jpg" /></a></li>
      <li><a href="http://www.heavenfoliage.cn/"><img src="http://www.heavenfoliage.cn/plugin/windsphoto/photofile/20087/2008715194955160.jpg" /></a></li>
      <li><a href="http://www.heavenfoliage.cn/"><img src="http://www.heavenfoliage.cn/plugin/windsphoto/photofile/20087/2008715194955160.jpg" /></a></li>
      <li><a href="http://www.heavenfoliage.cn/"><img src="http://www.heavenfoliage.cn/plugin/windsphoto/photofile/20087/2008715194955160.jpg" /></a></li>
      <li><a href="http://www.heavenfoliage.cn/"><img src="http://www.heavenfoliage.cn/plugin/windsphoto/photofile/20087/2008715194955160.jpg" /></a></li>
      <li><a href="http://www.heavenfoliage.cn/"><img src="http://www.heavenfoliage.cn/plugin/windsphoto/photofile/20087/2008715194955160.jpg" /></a></li>
      <li><a href="http://www.heavenfoliage.cn/"><img src="http://www.heavenfoliage.cn/plugin/windsphoto/photofile/20087/2008715194955160.jpg" /></a></li>
      <li><a href="http://www.heavenfoliage.cn/"><img src="http://www.heavenfoliage.cn/plugin/windsphoto/photofile/20087/2008715194955160.jpg" /></a></li>
      <li><a href="http://www.heavenfoliage.cn/"><img src="http://www.heavenfoliage.cn/plugin/windsphoto/photofile/20087/2008715194955160.jpg" /></a></li>
      </ul>
      </div>
      <div id="scroll_end"></div>
    </div>
    JS代码

    代码
    <script language="javascript">
      var speed=20
      var scroll_begin = document.getElementById("scroll_begin");
      var scroll_end = document.getElementById("scroll_end");
      var scroll_div = document.getElementById("scroll_div");
      scroll_end.innerHTML=scroll_begin.innerHTML
      function Marquee(){
      if(scroll_end.offsetWidth-scroll_div.scrollLeft<=0)
      scroll_div.scrollLeft-=scroll_begin.offsetWidth
      else
      scroll_div.scrollLeft++
       
      }
      var MyMar=setInterval(Marquee,speed)
      scroll_div.onmouseover=function() {clearInterval(MyMar)}
      scroll_div.onmouseout=function() {MyMar=setInterval(Marquee,speed)}
    </script>

    上进,务实
  • 相关阅读:
    成为一名全栈工程师
    【DocFX文档翻译】DocFX 入门 (Getting Started with DocFX)
    SharePoint 2013 项目部署
    dynamics crm跳转到手机版本的页面
    Azure中block和Page的比较 Azure: Did You Know? Block vs Page Blobs
    斐讯k1路由器刷Breed BootLoader(不死UBoot)教程
    DynamicsCRM中的自动保存
    Migrating an ASP.NET MVC application to ADFS authentication
    说一下最近一个月的面试体会吧
    Boss直聘快速导出简历为PDF的方法
  • 原文地址:https://www.cnblogs.com/gaonengquan/p/1430991.html
Copyright © 2011-2022 走看看