h5 上經(jīng)常會(huì)有這樣的需求:
需要在頁(yè)面上加上一個(gè)懸浮圖標(biāo),大致是如下圖的最終實(shí)現(xiàn)
但是往往按照設(shè)計(jì)稿是不會(huì)遮住主體區(qū)域的,但是實(shí)際上有時(shí)候偏偏會(huì)遮擋主體區(qū)域,但是為了更好的點(diǎn)擊量,又不得不懸浮在頁(yè)面上...
如果能讓圖標(biāo)可拖拽移動(dòng),這樣在遮住主體區(qū)域之后,用戶可自由移動(dòng),這種方案及可以兼顧了。
實(shí)現(xiàn)的效果如下:
(和微信的浮窗效果類似,左右位置靠邊顯示,上下位置隨意放)
話不多說(shuō),上代碼了
<div class="ys-float-btn"
:style="{'width': itemWidth+'px','height': itemHeight+'px','left': left+'px','top': top+'px'}"
ref="div"
@touchstart.prevent="(e) => {dragStart(e)}"
@touchend.prevent="(e) => {dragEnd(e)}"
@touchmove.prevent="(e) => {dragProgress(e)}"
>
<img src="./../assets/fc-icon.png" />
</div>
// 代碼直接在 vue 項(xiàng)目里,可自行改為js/jquery 寫法
data () {
return {
gapWidth: 10,
itemWidth: 20, // 圖標(biāo)的寬度
itemHeight: 30 // 圖標(biāo)的高度
}
},
created() {
this.clientWidth = document.documentElement.clientWidth;
this.clientHeight = document.documentElement.clientHeight;
this.left = this.clientWidth - this.itemWidth - this.gapWidth;
this.top = this.clientHeight*0.8; }
methods: {
dragStart(e) {
this.$refs.div.style.transition = 'none';
},
dragEnd(e) {
this.$refs.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;
}
},
dragProgress(e) {
if (e.targetTouches.length === 1) {
let touch = event.targetTouches[0];
this.left = touch.clientX - this.itemWidth/2;
this.top = touch.clientY - this.itemHeight/2;
}
}
}
以上代碼既可以上下也可以左右移動(dòng),如果只想讓可上下移動(dòng),就去掉 left 相關(guān)的設(shè)置和計(jì)算。
到此這篇關(guān)于html5實(shí)現(xiàn)可拖拽移動(dòng)的懸浮圖標(biāo)的示例代碼的文章就介紹到這了,更多相關(guān)html5可拖拽懸浮圖標(biāo)內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持腳本之家!