美文网首页HTML+CSS
鼠标悬停图片显示遮罩层

鼠标悬停图片显示遮罩层

作者: 一只菜鸟正在脱毛 | 来源:发表于2020-06-01 10:21 被阅读0次
image.png

1.遮罩层为引用了图片,两张图片放在一个盒子里

image.png

2.遮罩层从上往下滑动

样式:

  .smallbox {
            width: 100%;
            .card {
              position: relative;
              top: 0;
              left: 0;
              width: 224px;
              height: 302px;
              margin-right: 70px;
              overflow: hidden;

              img {
                width: 224px;
                height: 302px;
                margin-right: 70px;
              }
              .message {
                position: absolute;
                // bottom: 0;
                left: 0;
                right: 0;
                top: 0;
                transition: all 1s;
                transform: translateY(100%);
                width: 224px;
                height: 302px;
                img {
                  width: 224px;
                  height: 302px;
                  margin-right: 70px;
                }
              }
              &:hover .message {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                top: 0;
                transform: translateY(-0px);
              }
            }
          }

相关文章

网友评论

    本文标题:鼠标悬停图片显示遮罩层

    本文链接:https://www.haomeiwen.com/subject/hfjjzhtx.html