欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

通过鼠标使图片交替显示

程序员文章站 2022-03-07 21:52:43
伪类 after、before、hovercss代码使用的是预编译less,简单分享:就是固定框200*200,设定超出不显示,在div同时放入两张图片,通过margin的方式进行切换,效果由transition属性,显得较为平滑.img{ display: inline-block; width: 200px; height: 200px; overflow: hidden; .img_list{...

伪类 after、before、hover

通过鼠标使图片交替显示
css代码使用的是预编译less,
简单分析:就是固定框200*200,设定超出不显示,在div同时放入两张图片,通过margin的方式进行切换,效果由transition属性,显得较为平滑

.all_size(@width:200px,@height:200px) {
  width: @width;
  height: @height;
}

.img_style(@url) {
  .all_size();
  content: "";
  display: inline-block;
  background-size: contain;
  background: url(@url) no-repeat center;
}
.img {
  .all_size();
  display: inline-block;
  overflow: hidden;

  .img_list {
    .all_size(400px,200px);
    display: inline-block;

    &::before {
      .img_style("../assets/imgaes/1.jpg");
      transition: margin 0.2s;
    }
    &::after {
      .img_style("../assets/imgaes/2.jpg");
    }
    &:hover::before {
      margin-left: -400px;
      transition: margin 0.2s;
    }
  }
}
<div class="img">
   <div class="img_list"></div>
</div>

如果看不懂less,就。。。

.img {
  display: inline-block;
  width: 200px;
  height: 200px;
  overflow: hidden;
}

.img_list {
  display: inline-block;
  width: 400px;
  height: 200px;
}

.img_list::before {
  content: "";
  display: inline-block;
  width: 200px;
  height: 200px;
  background: url("../assets/imgaes/1.jpg") no-repeat center;
  background-size: contain;
  transition: margin 0.2s;
}

.img_list::after {
  content: "";
  display: inline-block;
  width: 200px;
  height: 200px;
  background: url("../assets/imgaes/2.jpg") no-repeat center;
  background-size: contain;
}

.img_list:hover::before {
  margin-left: -400px;
  transition: margin 0.2s;
}

本文地址:https://blog.csdn.net/weixin_45019566/article/details/107545589

相关标签: css3 css