欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

JS实现的点击按钮图片上下滚动效果示例

程序员文章站 2023-11-05 12:43:58
本文实例讲述了js实现的点击按钮图片上下滚动效果。分享给大家供大家参考,具体如下:

本文实例讲述了js实现的点击按钮图片上下滚动效果。分享给大家供大家参考,具体如下:

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>title</title>
  <style>
    *{
      margin: 0;
      padding:0;
      list-style: none;
    }
    .big{
      width: 200px;
      height: 200px;
      margin:100px auto;
    }
    ul{
      width: 100px;
      height: 100px;
      border: 1px solid black;
      position: relative;
      overflow: hidden;
    }
    li{
      width: 100px;
      height: 100px;
      line-height: 100px ;
      text-align: center;
    }
    .color1{
      background: red;
      position: absolute;
    }
    .color2{
      background: yellow;
      position: absolute;
    }
    .color3{
      background: pink;
      position: absolute;
    }
    .color4{
      background: green;
      position: absolute;
    }
    .input1{
      width: 30px;
      height: 30px;
      margin: 10px ;
      position: absolute;
      top:150px ;
      left:550px;
    }
    .input2{
      width: 30px;
      height: 30px;
      margin: 10px ;
      position: absolute;
      top:150px ;
      left:590px;
    }
  </style>
</head>
<body>
<div class="big">
<ul>
  <li class="color1" style="top:0;">1</li>
  <li class="color2" style="top:100px;">2</li>
  <li class="color3" style="top:200px;">3</li>
  <li class="color4" style=" top:-100px;">4</li>
</ul>
  <input class="input1" type="button" value="1">
  <input class="input2" type="button" value="2">
</div>
<script>
  window.onload=function () {
    var oipt1=document.getelementsbytagname("input")[0];
    var oipt2=document.getelementsbytagname("input")[1];
    var allcolor=document.getelementsbytagname("li");
    oipt2.addeventlistener("click",function () {
      for(var i=0;i<allcolor.length;i++){
        allcolor[i].style.top=parsefloat(allcolor[i].style.top)-100+"px";
        allcolor[i].style.transition=1+"s"
            if(allcolor[i].style.top==-300+"px"){
              allcolor[i].style.top=100+"px"
              allcolor[i].style.transition=0+"s"
            }
      }
    },false)
    oipt1.addeventlistener("click",function () {
      for(var i=0;i<allcolor.length;i++){
        allcolor[i].style.top=parsefloat(allcolor[i].style.top)+100+"px";
        allcolor[i].style.transition=1+"s"
        if (allcolor[i].style.top==400+"px"){
          allcolor[i].style.top=0+"px"
          allcolor[i].style.transition=0+"s"
        }
      }
    },false)
  }
</script>
</body>
</html>

这里使用在线html/css/javascript代码运行工具http://tools.jb51.net/code/htmljsrun测试上述代码,可得如下运行结果:

JS实现的点击按钮图片上下滚动效果示例

更多关于javascript相关内容感兴趣的读者可查看本站专题:《javascript图片操作技巧大全》、《javascript切换特效与技巧总结》、《javascript运动效果与技巧汇总》、《javascript动画特效与技巧汇总》、《javascript错误与调试技巧总结》、《javascript数据结构与算法技巧总结》、《javascript遍历算法与技巧总结》及《javascript数学运算用法总结

希望本文所述对大家javascript程序设计有所帮助。