首页 > 其他分享 >攀爬效果2

攀爬效果2

时间:2023-01-13 10:55:32浏览次数:37  
标签:box rgba 效果 攀爬 5px 15px 20px 255

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <link rel="stylesheet" href="try.css">
    <title>Document</title>
</head>
<body>
    <div class="loader">
        <div style="--i:0"></div>
        <div style="--i:1"></div>
        <div style="--i:2"></div>
        <div style="--i:3"></div>
        <div style="--i:4"></div>
    </div>
</body>
</html>
*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body
{
  display: flex;
  background: #edf1f4;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.loader
{
  display: flex;
  flex-direction: row;
}
.loader div
{
  position: relative;
  width: 40px;
  height: 200px;
  margin: 20px;
  border-radius: 40px;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05,#edf1f4));
  box-shadow: 15px 15px 20px rgba(0, 0, 0, 0.1),
  -15px -15px 20px #fff,
  inset -5px -5px 5px rgba(255,255,255,0.5),
  inset 5px 5px 5px rgba(0,0,0,0.05);
}
/* 这个伪元素加深了阴影 */
.loader div::before
{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  border-radius: 40px;
  box-shadow: 15px 15px 20px rgba(0, 0, 0, 0.1),
  -15px -15px 20px #fff,
  inset -5px -5px 5px rgba(255,255,255,0.5),
  inset 5px 5px 5px rgba(0,0,0,0.05);
}
.loader div::after
{
  content: '';
  position: absolute;
  top: 0;
  left: 1px;
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  box-shadow: inset -5px -5px 5px rgba(0,0,0,0.2),
  0 420px 0 400px #2196f3;
  transform: translateY(160px);
  animation: animate 2.5s ease-in-out infinite;
  animation-delay: calc(-0.5s * var(--i));
}
@keyframes animate
{
  0%
  {
    transform: translateY(160px);
    filter: hue-rotate(180deg);
  }
  50%
  {
    transform: translateY(0px);
  }
  100%
  {
    transform: translateY(160px);
    filter: hue-rotate(0deg);
  }
}

 

标签:box,rgba,效果,攀爬,5px,15px,20px,255
From: https://www.cnblogs.com/daxiangcai/p/17048882.html

相关文章