SoFunction
Updated on 2025-04-03

JS imitates the news sliding effect code at the bottom of Vanke

I won’t say much nonsense, I will just post the code to you. The specific code is as follows:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Imitate the news sliding effect at the bottom of Vanke</title>
  <style>
    * {
      padding: 0;
      margin: 0;
    }
    #subject {
      position: relative;
      width: 80%;
      height: 165px;
      background: skyblue;
      margin: 200px auto;
      overflow: hidden;
    }
    #subject > ul > li {
      position: absolute;
      float: left;
      list-style: none;
      width: 40%;
      height: 165px;
      font-size: 48px;
      text-align: center;
      color: #fff;
      line-height: 165px;
      transition: 0.5s;
    }
    .item1 {
      background: orange;
      left: 0;
      z-index: 1;
    }
    /*hover:item1*/
    #-1 .item2,
    .item2 {
      background: deepskyblue;
      left: 40%;
      z-index: 2;
    }
    /*hover:item2*/
    #-4 .item2,
    #-3 .item2,
    #-2 .item2 {
      left: 20%;
    }
    /*hover:item3*/
    #-4 .item3,
    #-3 .item3 {
      left: 40%;
    }
    /*hover:item4*/
    #-4 .item4{
      left: 60%;
    }
    #-1 .item3,
    .item3 {
      background: mediumseagreen;
      left: 60%;
      z-index: 3;
    }
    #-3 .item4,
    #-2 .item4,
    #-1 .item4,
    .item4 {
      background: pink;
      left: 80%;
      z-index: 4;
    }
  </style>
</head>
<body>
<div  class="wrapper">
  <ul>
    <li class="item item1">1</li>
    <li class="item item2">2</li>
    <li class="item item3">3</li>
    <li class="item item4">4</li>
  </ul>
</div>
<script>
  $(function () {
    $('.item').hover(function () {
      if ($(this).hasClass('item1')) {
        $('#subject').removeClass().addClass('state-1');
      }
      if ($(this).hasClass('item2')) {
        $('#subject').removeClass().addClass('state-2');
      }
      if ($(this).hasClass('item3')) {
        $('#subject').removeClass().addClass('state-3');
      }
      if ($(this).hasClass('item4')) {
        $('#subject').removeClass().addClass('state-4');
      }
    });
    $('#subject').mouseleave(function () {
      $('#subject').removeClass();
    });
  });
</script>
</body>
</html>

Summarize

The above is the news sliding effect code of JS imitation Vanke at the bottom of the JS imitation Vanke introduced to you. I hope it will be helpful to you. If you have any questions, please leave me a message. The editor will reply to you in time!