最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

vue實(shí)現(xiàn)移動(dòng)端可拖拽式icon圖標(biāo)

 更新時(shí)間:2022年03月02日 17:12:37   作者:進(jìn)了……  
這篇文章主要為大家詳細(xì)介紹了vue實(shí)現(xiàn)移動(dòng)端可拖拽式icon圖標(biāo),文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

本文實(shí)例為大家分享了vue實(shí)現(xiàn)移動(dòng)端可拖拽式icon圖標(biāo)的具體代碼,供大家參考,具體內(nèi)容如下

需求描述:在移動(dòng)端頁(yè)面懸浮一個(gè)可隨便拖拽的圖標(biāo),類(lèi)似于蘋(píng)果手機(jī)的輔助觸控小圓點(diǎn),并且可隨意拖動(dòng)。

預(yù)覽:

組件代碼如下:

<template>
? ? <div class="ys-float-btn" :style="{'width':itemWidth+'px','height':itemHeight+'px','left':left+'px','top':top+'px'}"
? ? ? ? ?ref="div"
? ? ? ? ?@click ="onBtnClicked">
? ? ? ? <slot name="icon"></slot>
? ? ? ? <SvgIcon :iconClass="'changjianwentijieda'"
? ? ? ? ? ? ? ? ?:style="{'width':itemWidth+'px','height':itemHeight+'px'}"/>
? ? </div>
</template>
?
?
<script>
? ? export default {
? ? ? ? name: "DragIcon",
? ? ? ? props:{
? ? ? ? ? ? itemWidth:{
? ? ? ? ? ? ? ? type:Number,
? ? ? ? ? ? ? ? default:40
? ? ? ? ? ? },
? ? ? ? ? ? itemHeight:{
? ? ? ? ? ? ? ? type:Number,
? ? ? ? ? ? ? ? default:40
? ? ? ? ? ? },
? ? ? ? ? ? gapWidth:{
? ? ? ? ? ? ? ? type:Number,
? ? ? ? ? ? ? ? default:10
? ? ? ? ? ? },
?
? ? ? ? ? ? coefficientHeight:{
? ? ? ? ? ? ? ? type:Number,
? ? ? ? ? ? ? ? default:0.8
? ? ? ? ? ? }
? ? ? ? },
? ? ? ? created(){
? ? ? ? ? ? this.clientWidth = document.documentElement.clientWidth;
? ? ? ? ? ? this.clientHeight = document.documentElement.clientHeight;
? ? ? ? ? ? this.left = this.clientWidth - this.itemWidth - this.gapWidth;
? ? ? ? ? ? this.top = this.clientHeight*this.coefficientHeight;
? ? ? ? },
? ? ? ? mounted(){
? ? ? ? ? ? this.$nextTick(()=>{
? ? ? ? ? ? ? ? const div = this.$refs.div;
? ? ? ? ? ? ? ? div.addEventListener("touchstart",(e)=>{
? ? ? ? ? ? ? ? ? ? e.stopPropagation();
? ? ? ? ? ? ? ? ? ? div.style.transition = 'none';
? ? ? ? ? ? ? ? });
? ? ? ? ? ? ? ? div.addEventListener("touchmove",(e)=>{
? ? ? ? ? ? ? ? ? ? ? ? e.stopPropagation();
? ? ? ? ? ? ? ? ? ? ? ? if (e.targetTouches.length === 1) {
? ? ? ? ? ? ? ? ? ? ? ? ? ? let touch = event.targetTouches[0];
? ? ? ? ? ? ? ? ? ? ? ? ? ? this.left = touch.clientX - this.itemWidth/2;
? ? ? ? ? ? ? ? ? ? ? ? ? ? this.top = touch.clientY - this.itemHeight/2;
? ? ? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? },
? ? ? ? ? ? ? ? ? ? false
? ? ? ? ? ? ? ? );
? ? ? ? ? ? ? ? div.addEventListener("touchend",(e)=>{
? ? ? ? ? ? ? ? ? ? e.stopPropagation();
? ? ? ? ? ? ? ? ? ? div.style.transition = 'all 0.3s';
? ? ? ? ? ? ? ? ? ? if(this.left>this.clientWidth/2){
? ? ? ? ? ? ? ? ? ? ? ? this.left = this.clientWidth - this.itemWidth - this.gapWidth;
? ? ? ? ? ? ? ? ? ? }else{
? ? ? ? ? ? ? ? ? ? ? ? this.left = this.gapWidth;
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? if(this.top<=36)
? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? this.top=36+this.gapWidth
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? else{
? ? ? ? ? ? ? ? ? ? ? ? let bottom=this.clientHeight-50-this.itemHeight-this.gapWidth
? ? ? ? ? ? ? ? ? ? ? ? console.log(bottom,this.top)
? ? ? ? ? ? ? ? ? ? ? ? if(this.top>=bottom)
? ? ? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? ? ? this.top=bottom
? ? ? ? ? ? ? ? ? ? ? ? }
?
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? });
? ? ? ? ? ? });
? ? ? ? },
?
? ? ? ? methods:{
? ? ? ? ? ? onBtnClicked(){
? ? ? ? ? ? ? ? this.$emit("onFloatBtnClicked");
? ? ? ? ? ? },
?
? ? ? ? },
? ? ? ? data(){
? ? ? ? ? ? return{
? ? ? ? ? ? ? ? timer:null,
? ? ? ? ? ? ? ? currentTop:0,
? ? ? ? ? ? ? ? clientWidth:0,
? ? ? ? ? ? ? ? clientHeight:0,
? ? ? ? ? ? ? ? left:0,
? ? ? ? ? ? ? ? top:0,
? ? ? ? ? ? }
? ? ? ? }
? ? }
</script>
?
<style lang="scss" scoped>
? ? .ys-float-btn{
? ? ? ? background:rgba(56,181,77,1);
? ? ? ? box-shadow:0 2px 10px 0 rgba(0,0,0,0.1);
? ? ? ? border-radius:50%;
? ? ? ? color: #666666;
? ? ? ? z-index: 20;
? ? ? ? transition: all 0.3s;
? ? ? ? display: flex;
? ? ? ? flex-direction: column;
? ? ? ? justify-content: center;
? ? ? ? align-items: center;
? ? ? ? position: fixed;
? ? ? ? bottom: 20vw;
?
? ? ? ? img{
? ? ? ? ? ? width: 50%;
? ? ? ? ? ? height: 50%;
? ? ? ? ? ? object-fit: contain;
? ? ? ? ? ? margin-bottom: 3px;
? ? ? ? }
? ? }
? ? .su_img{
? ? ? ? width: 40px;
? ? ? ? height: 40px;
? ? ? ? margin: 8px 0 0 0;
? ? }
?
</style>

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評(píng)論

耿马| 交城县| 玛多县| 桓仁| 绥芬河市| 永和县| 鄂伦春自治旗| 呈贡县| 图木舒克市| 乐安县| 大英县| 益阳市| 招远市| 临颍县| 桐城市| 龙州县| 铜山县| 乌什县| 定兴县| 高平市| 姜堰市| 抚松县| 盘锦市| 西盟| 顺平县| 兴海县| 通榆县| 民乐县| 根河市| 德格县| 武夷山市| 林西县| 正镶白旗| 吉林市| 施甸县| 信宜市| 津南区| 枣庄市| 大石桥市| 安陆市| 井陉县|