微信公众号开发

微信小程序——悬浮窗拖动

本文主要是介绍微信小程序——悬浮窗拖动,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

在这里插入图片描述

使用
movable-area
movable-view
官方文档

代码

direction="all"属性必不可缺

wxml

<movable-area class="all">

<movable-view direction="all" class="touchmove">

    <!-- <image src='../images/icon_component_HL.png'></image> -->
    123223

</movable-view>

</movable-area>

wxss

.all{
  pointer-events: none;
  height: 90%;
  width: 100%;
  position: fixed;
  left: 0px;
  top: 10%;
  background: rgba(173, 216, 230, 0.664);
}

.touchmove{
  pointer-events: auto;
    height: 50px;
    width: 50px;
    background: pink;
    border-radius: 50%;
    transform: translateX(91px) translateY(242.6px) translateZ(0px) scale(1);
    transform-origin: center center;
    will-change: auto;
}
这篇关于微信小程序——悬浮窗拖动的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!