• 无缝滚动


    PS: 无缝滚动专题来源于 [这里]

    1. 第一阶段运行效果在 [这里]

    这里我们需要注意的是 #div1{position:relative;} 和 #div1 ul{position:absolute; left:0; top:0;} 

     #div1 Box:                     #div1 ul  Box:                

    (1)我们可以看到, #div1内容区也就是#div1 ul的内容区,因为#div1只包含#div1 ul,而不包含其他元素。这里#div1 ul .offsetLeft = 0;

    根据我之前的一篇博文 [如何让JavaScript元素动起来], 我们需要修改#div1 ul 的left属性。

    在MDN中关于 [left] 属性有如下一段描述:

    • for absolutely positioned elements, the distance to the left edge of the containing block;
    • for relatively positioned elements, the offset that the element is moved left from its position in the normal flow (if it wasn' t positioned.)  这里有疑问~

    我尝试过,position: absolute / relative 都是可以的~

    (2)页面刚加载完的时候是这样子的:

        页面运行过程中是这样子的:

    页面运行过程中,ul不断向左移动(拜left所赐),藏在ul下面的背景色也就显示出来了~

    2. 第二阶段运行效果在 [这里]

    这里需要注意的是:oUl.offsetLeft < -oUl.offsetWidth/2; 当运行到一半的时候,把其拉回到原来的位置。

  • 相关阅读:
    通过另外一个应用程序给多个文本框赋值, 模拟单击事件
    AngularJS
    九章算法
    实现继承
    二分查找
    NET Core依赖注入解读&使用Autofac替代实现
    NET SignalR 与 LayIM2.0
    WebVR
    依赖注入
    如何实现配置与源文件的同步
  • 原文地址:https://www.cnblogs.com/linxd/p/4540201.html
Copyright © 2020-2023  润新知