您好,登錄后才能下訂單哦!
前言
vue開發手機端懸浮按鈕實現,可以拖拽,滾動的時候收到里邊,不影響視線
github地址
使用,基于vue-cli3.0+webpack 4+vant ui + sass+ rem
適配方案+axios封裝,構建手機端模板腳手架 vue-h6-template
后續將發布各種商城組件組件,讓商城簡單高效開發
線上體驗
使用
將 src/components文件夾下的s-icons組件放到你的組件目錄下
使用組件
// template <template> <div> <float-icons padding="10 10 60 10" class="icons-warp"> <div class="float-icon-item"> <img src="../../assets/images/home-icon.png" @click="handleIcons('home')"> <span>首頁</span> </div> <div class="float-icon-item"> <img src="../../assets/images/cart-icon.png" @click="handleIcons('cart')"> <span>購物車</span> </div> </float-icons> </div> </template> <script> import FloatIcons from '@/components/s-icons' export default { components: { 'float-icons': FloatIcons }, methods: { // 點擊按鈕 handleIcons(router) { console.log('router', router) this.$router.push(router) } } } </script> <style lang='scss' scoped> .icons-warp { border-radius: 25px; .float-icon-item { display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; width: 50px; height: 50px; img { width: 25px; height: 25px; margin-bottom: 3px; } span { font-size: 9px; color: #666666; } } } </style>
參數
字段名 | 類型 | 默認值 | 描述 |
---|---|---|---|
padding | String | '10 10 10 10' | 懸浮按鈕可拖拽的安全范圍,與 css padding 傳參一致 |
scoller | String | '' | 監聽頁面滾動容器 id,不傳時候監聽 window (解決滾動時懸浮框按鈕不收進去) |
注意
如果滾滾動的時候收到里邊,需要穿scoller參數
比如:
你的滾動列表外層div 設置id
<div id="loadmore"> <van-list v-model="loading" :finished="finished" finished-text="沒有更多了" @load="onLoad"> <van-cell v-for="item in list" :key="item" :title="`我是你的小仙女,愛你第${item}遍`" /> </van-list> </div>
組件傳參 scoller="loadmore"
<float-icons **scoller="loadmore"** padding="10 10 60 10" class="icons-warp"> </float-icons>
因為你可能使用組件導致監聽的滾動元素是window,所以你需要將你的滾動容器的id傳進我的組件
總結
以上所述是小編給大家介紹的vue懸浮可拖拽懸浮按鈕的實例代碼,希望對大家有所幫助,如果大家有任何疑問歡迎給我留言,小編會及時回復大家的!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。