背景图片渐变功能

1.纯css写

<!DOCTYPE html>
<html>

<head>
    <meta charset="utf-8">
    <title>1</title>
    <style>
        div {
            width: 500px;
            height: 500px;
            /* background: red; */
            position: relative;
            animation: mymove 10s infinite;
            -webkit-animation: mymove 10s infinite;
            /* Safari and Chrome */
        }

        @keyframes mymove {
            0% {
                background-image: url("./1.jpg");
                background-size: 100% 100%;
                background-repeat: no-repeat;
            }

            25% {
                background-image: url("./2.jpg");
                background-size: 100% 100%;
                background-repeat: no-repeat;
            }

            75% {
                background-image: url("./3.jpg");
                background-size: 100% 100%;
                background-repeat: no-repeat;
            }

            100% {
                background-image: url("./1.jpg");
                background-size: 100% 100%;
                background-repeat: no-repeat;
            }
        }

    </style>
</head>

<body>

    <p><strong>注意:</strong> @keyframes不兼容ie9</p>

    <div></div>

</body>

</html>

2.js写

<template>
  <div>
    <ul class="carousel-body">
      <!-- fade 显示那张图片就加fade类名 -->
      <li
        class="carousel-item"
        v-for="(item, i) in list"
        :key="i"
        :class="{ fade: index === i }"
      >
        <img :src="item.img" alt="" />
      </li>
    </ul>
  </div>
</template>

<script>
export default {
  data() {
    return {
      index: 0,
      timer: null,
      list: [
        {
          img: require("../assets/logo.png"),
        },
        {
          img: require("../assets/表盘.png"),
        },
        {
          img: require("../assets/logo.png"),
        },
        {
          img: require("../assets/表盘.png"),
        },
      ],
    };
  },
  created() {
    this.autoPlayFn();
  },
  methods: {
    autoPlayFn() {
      this.timer = setInterval(() => {
        this.index++;
        if (this.index >= this.list.length) {
          this.index = 0;
        }
      }, 2000);
    },
  },
};
</script>

<style scoped>
.carousel-body {
  width: 100%;
  height: 100%;
  background: red;
}
.carousel-item {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.5s linear;
}
.fade {
  opacity: 1;
  z-index: 1;
}
</style>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值