长方形和梯形横向动态滚动条

第一种:长方形横向动态滚动条

效果如下所示,想象成动态的
在这里插入图片描述

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>横向动态滚动条</title>
</head>
<style>
    .progress-bar {
      height: 20px;
      width: 400px;
      border-radius: 5px;
      border: 1px solid #ccc;
      background: #ddd;
      margin: 50px auto;
    }
    .progress-val {
      height: 20px;
      width: 400px;
      background: repeating-linear-gradient(135deg, #416dff 0px, #416dff 15px, #2743a9 15px,#2743a9 30px);
      background-size: 42px 20px;
      animation: progress-striped 500ms linear 0s infinite normal both;
    }
    @keyframes progress-striped {
      from { background-position: 42px 0px; }
      to { background-position: 0px 0px; }
    }

</style>
<body>
    <div class="progress-bar">
        <div class="progress-val">
        </div>
    </div>
</body>
</html>

第二种:梯形横向动态滚动条

效果如下所示,想象成动态的
在这里插入图片描述

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>动态滚动条</title>
</head>
<style>
    .progress-bar {
	    width: 200px;
	    height: 0px;
	    border-top: 0px solid;
	    border-left: 4px solid transparent;
	    border-right: 4px solid transparent;
	    transform: perspective(3em) rotateX(15deg);
	    text-align: center;
	}

  .progress-val {
    height: 15px;
    width: 200px;
    background: repeating-linear-gradient(135deg, #416dff 0px, #416dff 15px, #2743a9 15px, #2743a9 30px);
    background-size: 42px 15px;
    animation: progress-striped 500ms linear 0s infinite normal both;
  }

  @keyframes progress-striped {
    from {
      background-position: 42px 0px;
    }

    to {
      background-position: 0px 0px;
    }
  }

</style>
<body style="margin: 100px 600px;">
    <div class="progress-bar">
        <div class="progress-val">
        </div>
    </div>
</body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值