验证码: 看不清楚,换一张 查询 注册会员,免验证
  • {{ basic.site_slogan }}
  • 打开微信扫一扫,
    您还可以在这里找到我们哟

    关注我们

vue3怎么使用useMouseInElement实现图片局部放大预览效果

阅读:1003 来源:乙速云 作者:代码code

vue3怎么使用useMouseInElement实现图片局部放大预览效果

1、首先要安装@vueuse/core

npm i @vueuse/core

2、实现过程如下:




.goods-image {
  width: 480px;
  height: 400px;
  position: relative;
  display: flex;
  z-index: 500;
  .large {
    position: absolute;
    top: 0;
    left: 412px;
    width: 400px;
    height: 400px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    background-repeat: no-repeat;
    background-size: 800px 800px;
    background-color: #f8f8f8;
  }
  .middle {
    width: 400px;
    height: 400px;
    background: #f5f5f5;
    position: relative;
    cursor: move;
    img{
      width: 100%;
      height: 100%;
    }
    //cursor: pointer;
    .layer {
      width: 200px;
      height: 200px;
      background: rgba(0,0,0,.2);
      left: 0;
      top: 0;
      position: absolute;
    }
  }
  .small {
    width: 80px;
    li {
      width: 68px;
      height: 68px;
      margin-left: 12px;
      margin-bottom: 15px;
      cursor: pointer;
      img{
        width: 100%;
        height: 100%;
      }
      &:hover,&.active {
        border: 2px solid #27BA9B;
      }
    }
  }
}

3、使用:在其他的.vue文件中导入组件即可使用

例如:

import HelloWorld from "@/components/HelloWorld.vue";
分享到:
*特别声明:以上内容来自于网络收集,著作权属原作者所有,如有侵权,请联系我们: hlamps#outlook.com (#换成@)。
相关文章
{{ v.title }}
{{ v.description||(cleanHtml(v.content)).substr(0,100)+'···' }}
你可能感兴趣
推荐阅读 更多>