其他分享
首页 > 其他分享> > pure CSS 轮播图 All In One

pure CSS 轮播图 All In One

作者:互联网

pure CSS 轮播图 All In One


:root {
  --s: 6;
  --h: 36;
  --speed: .8s;
}

.g-container {
  width: 300px;
  margin: auto;
  height: calc(var(--h) * 1px);
  line-height: calc(var(--h) * 1px);
  font-size: 20px;
  background: #673ab7;
  color: #fff;
  overflow: hidden;
}

ul {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
}

ul li {
  flex-shrink: 0;
  width: 100%;
  padding-left: 10px;
  box-sizing: border-box;
}

ul {
  animation: move calc(var(--speed) * var(--s)) steps(var(--s)) infinite;
}

ul li {
  white-space: nowrap;
  cursor: pointer;
  animation: liMove calc(var(--speed)) infinite;
}

@keyframes move {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, calc(var(--s) * var(--h) * -1px));
  }
}

@keyframes liMove {
  0% {
    transform: translate(0, 0);
  }
  80%,
  100%  {
    transform: translate(0, calc(var(--h) * -1px));
  }
}

demo

<iframe allowfullscreen="true" allowtransparency="true" frameborder="no" height="482.161376953125" loading="lazy" scrolling="no" src="https://codepen.io/xgqfrms/embed/JjpmxXr?default-tab=html%2Cresult" style="width: 100%" title="Vertical Infinity Loop "> See the Pen Vertical Infinity Loop by xgqfrms (@xgqfrms) on CodePen. </iframe>

refs


Flag Counter

©xgqfrms 2012-2020

www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问!

原创文章,版权所有©️xgqfrms, 禁止转载

标签:flex,轮播,--,transform,pure,xgqfrms,var,calc,CSS
来源: https://www.cnblogs.com/xgqfrms/p/16361702.html