移除key ,删除滚动的字体
parent
2c386f4cd6
commit
f59c179f45
|
@ -1,20 +1,28 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="custom-list" ref="scrollBody" @mouseenter="mouseenterFunc" @mouseleave="mouseleaveFunc"
|
<div class="custom-list" ref="scrollBody" @mouseenter="mouseenterFunc" @mouseleave="mouseleaveFunc" @mousewheel="mousewheelFunc">
|
||||||
@mousewheel="mousewheelFunc">
|
<div
|
||||||
<div class="list-body" :class="{
|
class="list-body"
|
||||||
|
:class="{
|
||||||
'list-body2': isHorizontal,
|
'list-body2': isHorizontal,
|
||||||
canScroll:!isCanScroll
|
canScroll: !isCanScroll,
|
||||||
}" ref="listBody" :style="{ transform: getScrollDistance() }">
|
}"
|
||||||
|
ref="listBody"
|
||||||
|
:style="{ transform: getScrollDistance() }">
|
||||||
<slot></slot>
|
<slot></slot>
|
||||||
</div>
|
</div>
|
||||||
<div class="list-body" :class="{
|
<div
|
||||||
'list-body2': isHorizontal
|
class="list-body"
|
||||||
}" ref="tBody" v-if="isCanScroll" :style="{ transform: getScrollDistance() }">
|
:class="{
|
||||||
|
'list-body2': isHorizontal,
|
||||||
|
}"
|
||||||
|
ref="tBody"
|
||||||
|
v-if="isCanScroll"
|
||||||
|
:style="{ transform: getScrollDistance() }">
|
||||||
<slot></slot>
|
<slot></slot>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script lang='ts' setup>
|
<script lang="ts" setup>
|
||||||
import { computed, ref, nextTick, onMounted } from 'vue';
|
import { computed, ref, nextTick, onMounted } from 'vue';
|
||||||
//滚动距离
|
//滚动距离
|
||||||
const scrollDistance = ref(0);
|
const scrollDistance = ref(0);
|
||||||
|
@ -31,34 +39,32 @@ const animationFrame = ref();
|
||||||
const isCanScroll = ref(true);
|
const isCanScroll = ref(true);
|
||||||
const scrollBody = ref<any>(null);
|
const scrollBody = ref<any>(null);
|
||||||
const listBody = ref<any>(null);
|
const listBody = ref<any>(null);
|
||||||
const props = defineProps(
|
const props = defineProps({
|
||||||
{
|
|
||||||
steep: {
|
steep: {
|
||||||
//滚动速度
|
//滚动速度
|
||||||
type: Number,
|
type: Number,
|
||||||
default: 1
|
default: 1,
|
||||||
},
|
},
|
||||||
scrollDirection: {
|
scrollDirection: {
|
||||||
//滚动方向
|
//滚动方向
|
||||||
type: String,
|
type: String,
|
||||||
default: "top"
|
default: 'top',
|
||||||
},
|
},
|
||||||
isRoller: {
|
isRoller: {
|
||||||
//是否可以滑轮滚动
|
//是否可以滑轮滚动
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: true
|
default: true,
|
||||||
},
|
},
|
||||||
rollerScrollDistance: {
|
rollerScrollDistance: {
|
||||||
//滑轮滚动的距离
|
//滑轮滚动的距离
|
||||||
type: Number,
|
type: Number,
|
||||||
default: 20
|
default: 20,
|
||||||
},
|
},
|
||||||
data: Array
|
data: Array,
|
||||||
}
|
});
|
||||||
)
|
|
||||||
const isHorizontal = computed(() => {
|
const isHorizontal = computed(() => {
|
||||||
return props.scrollDirection === "left" || props.scrollDirection === "right"
|
return props.scrollDirection === 'left' || props.scrollDirection === 'right';
|
||||||
})
|
});
|
||||||
|
|
||||||
const start = () => {
|
const start = () => {
|
||||||
//判断是否可以滚动函数
|
//判断是否可以滚动函数
|
||||||
|
@ -79,7 +85,7 @@ const start = () => {
|
||||||
if (isCanScroll.value) {
|
if (isCanScroll.value) {
|
||||||
run();
|
run();
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
||||||
const run = () => {
|
const run = () => {
|
||||||
//清空动画
|
//清空动画
|
||||||
|
@ -107,26 +113,20 @@ const run = () => {
|
||||||
}
|
}
|
||||||
//判断滚动值
|
//判断滚动值
|
||||||
if (!isStop.value) {
|
if (!isStop.value) {
|
||||||
if (
|
if (props.scrollDirection === 'top' || props.scrollDirection === 'left') {
|
||||||
props.scrollDirection === "top" ||
|
|
||||||
props.scrollDirection === "left"
|
|
||||||
) {
|
|
||||||
scrollDistance.value -= props.steep;
|
scrollDistance.value -= props.steep;
|
||||||
} else if (
|
} else if (props.scrollDirection === 'bottom' || props.scrollDirection === 'right') {
|
||||||
props.scrollDirection === "bottom" ||
|
|
||||||
props.scrollDirection === "right"
|
|
||||||
) {
|
|
||||||
scrollDistance.value += props.steep;
|
scrollDistance.value += props.steep;
|
||||||
}
|
}
|
||||||
run();
|
run();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
};
|
||||||
|
|
||||||
const stop = () => {
|
const stop = () => {
|
||||||
isStop.value = !0;
|
isStop.value = !0;
|
||||||
clearAnimation();
|
clearAnimation();
|
||||||
}
|
};
|
||||||
|
|
||||||
const initData = () => {
|
const initData = () => {
|
||||||
nextTick(() => {
|
nextTick(() => {
|
||||||
|
@ -138,12 +138,8 @@ const initData = () => {
|
||||||
listWidth.value = listBody.value?.clientWidth;
|
listWidth.value = listBody.value?.clientWidth;
|
||||||
|
|
||||||
if (
|
if (
|
||||||
(bodyHeight.value !== 0 &&
|
(bodyHeight.value !== 0 && listHeight.value !== 0 && listHeight.value >= bodyHeight.value) ||
|
||||||
listHeight.value !== 0 &&
|
(bodyWidth.value !== 0 && listWidth.value !== 0 && listWidth.value >= bodyWidth.value)
|
||||||
listHeight.value >= bodyHeight.value) ||
|
|
||||||
(bodyWidth.value !== 0 &&
|
|
||||||
listWidth.value !== 0 &&
|
|
||||||
listWidth.value >= bodyWidth.value)
|
|
||||||
) {
|
) {
|
||||||
isCanScroll.value = true;
|
isCanScroll.value = true;
|
||||||
start();
|
start();
|
||||||
|
@ -151,31 +147,31 @@ const initData = () => {
|
||||||
isCanScroll.value = false;
|
isCanScroll.value = false;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
};
|
||||||
|
|
||||||
// //获取滚动样式
|
// //获取滚动样式
|
||||||
const getScrollDistance = () => {
|
const getScrollDistance = () => {
|
||||||
let style;
|
let style;
|
||||||
if (!isHorizontal.value) {
|
if (!isHorizontal.value) {
|
||||||
style = "translate(0px, " + scrollDistance.value + "px)";
|
style = 'translate(0px, ' + scrollDistance.value + 'px)';
|
||||||
} else {
|
} else {
|
||||||
style = "translate(" + scrollDistance.value + "px,0px)";
|
style = 'translate(' + scrollDistance.value + 'px,0px)';
|
||||||
}
|
}
|
||||||
return style;
|
return style;
|
||||||
}
|
};
|
||||||
const clearAnimation = () => {
|
const clearAnimation = () => {
|
||||||
if (animationFrame.value) {
|
if (animationFrame.value) {
|
||||||
cancelAnimationFrame(animationFrame.value);
|
cancelAnimationFrame(animationFrame.value);
|
||||||
animationFrame.value = null;
|
animationFrame.value = null;
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
||||||
const mouseenterFunc = () => {
|
const mouseenterFunc = () => {
|
||||||
stop();
|
stop();
|
||||||
}
|
};
|
||||||
const mouseleaveFunc = () => {
|
const mouseleaveFunc = () => {
|
||||||
start();
|
start();
|
||||||
}
|
};
|
||||||
const mousewheelFunc = (e: any) => {
|
const mousewheelFunc = (e: any) => {
|
||||||
if (!isCanScroll.value || !props.isRoller) {
|
if (!isCanScroll.value || !props.isRoller) {
|
||||||
return false;
|
return false;
|
||||||
|
@ -187,21 +183,17 @@ const mousewheelFunc = (e:any) => {
|
||||||
scrollDistance.value += props.rollerScrollDistance;
|
scrollDistance.value += props.rollerScrollDistance;
|
||||||
}
|
}
|
||||||
run();
|
run();
|
||||||
}
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
//初始化页面数据
|
//初始化页面数据
|
||||||
initData();
|
initData();
|
||||||
}
|
});
|
||||||
)
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.custom-list {
|
.custom-list {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
font-size: 14px;
|
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
@ -209,7 +201,6 @@ onMounted(() => {
|
||||||
.list-body {
|
.list-body {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
font-size: 14px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.canScroll {
|
.canScroll {
|
||||||
|
@ -221,4 +212,3 @@ onMounted(() => {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|
|
@ -2,10 +2,10 @@
|
||||||
<div class="scrolltable" :style="gridStyle">
|
<div class="scrolltable" :style="gridStyle">
|
||||||
<div class="row header">
|
<div class="row header">
|
||||||
<div class="cell">序号</div>
|
<div class="cell">序号</div>
|
||||||
<div v-for="(head, i) in heads" :key="i" class="cell">{{ head }}</div>
|
<div v-for="(head, i) in heads" class="cell">{{ head }}</div>
|
||||||
</div>
|
</div>
|
||||||
<Scroll :data="datas" :steep="0.08" scrollDirection="top" :isRoller="true" :rollerScrollDistance="50">
|
<Scroll :data="datas" :steep="0.08" scrollDirection="top" :isRoller="true" :rollerScrollDistance="50">
|
||||||
<div v-for="(rows, i) in datas" class="row content" key="i">
|
<div v-for="(rows, i) in datas" class="row content">
|
||||||
<div class="cell no">{{ i + 1 }}</div>
|
<div class="cell no">{{ i + 1 }}</div>
|
||||||
<div v-for="(row, r) in rows" :class="{ cell: true, [cellType[r]]: !!cellType[r], [row.split('.')[1]]: !!row.split('.')[1] }">{{ row.split('.')[0] }}</div>
|
<div v-for="(row, r) in rows" :class="{ cell: true, [cellType[r]]: !!cellType[r], [row.split('.')[1]]: !!row.split('.')[1] }">{{ row.split('.')[0] }}</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -104,7 +104,8 @@ const gridStyle = computed(() => {
|
||||||
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAADYSURBVBiVTY8xSkNBGAbnX/YZHwTUEwQ9QCptbGwsxcJSEWxt0z1IEbBIZ+sBxPIpSC4ggim0sxc8gabJLtnNfikEyRxgmDGA+Drec0s3crhDgEJ5K7mMNo+bL9PLzW7KPJu0zRoy+608py6FMCSFLiW2Ps77Ps77lNiSQjeFMLTFZPAJ1BXhwE7ufgA0ud5J1O8GwVuOGZRRR//+1JFZzA6ytxymgqOi2OjpagxQyqxBLIWbmtrznpLuBVvrkQYzq+zSAMLDWW8DDUy2/3egjwV2W188fq8AvYtk5QJg+FMAAAAASUVORK5CYII=')
|
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAADYSURBVBiVTY8xSkNBGAbnX/YZHwTUEwQ9QCptbGwsxcJSEWxt0z1IEbBIZ+sBxPIpSC4ggim0sxc8gabJLtnNfikEyRxgmDGA+Drec0s3crhDgEJ5K7mMNo+bL9PLzW7KPJu0zRoy+608py6FMCSFLiW2Ps77Ps77lNiSQjeFMLTFZPAJ1BXhwE7ufgA0ud5J1O8GwVuOGZRRR//+1JFZzA6ytxymgqOi2OjpagxQyqxBLIWbmtrznpLuBVvrkQYzq+zSAMLDWW8DDUy2/3egjwV2W188fq8AvYtk5QJg+FMAAAAASUVORK5CYII=')
|
||||||
center center no-repeat;
|
center center no-repeat;
|
||||||
}
|
}
|
||||||
&.red { // 实例样式
|
&.red {
|
||||||
|
// 实例样式
|
||||||
&::before {
|
&::before {
|
||||||
--iconwidth: 16px;
|
--iconwidth: 16px;
|
||||||
content: ' ';
|
content: ' ';
|
||||||
|
|
Loading…
Reference in New Issue