VUE Angular通用动态列表组件-亦可为自动轮播组件-01-根据数据量自动纵向滚动,鼠标划入停止滚动
2021/7/8 23:37:39
本文主要是介绍VUE Angular通用动态列表组件-亦可为自动轮播组件-01-根据数据量自动纵向滚动,鼠标划入停止滚动,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
本文为纵向轮播,横向轮播/动态列表组件请戳----
代码是angular的,稍微改改就可以放入Vue项目里,差别不大哟
以下代码可以根据实际情况自行调整
父组件html
<app-scroll-up [dataObj]="dataObjUp"> <div class="slot-one"> <div [style]="{ height: dataObjUp.height + dataObjUp.unit }" class="inner_item" *ngFor="let item of dataObjUp.scrollList,index as i"> 内容:{{ item }}介绍:我是嵌入的slot{{ i+1 }},相当于vue的slot </div> </div> <div class="slot-two"> <div [style]="{ height: dataObjUp.height + dataObjUp.unit }" class="inner_item"> {{ dataObjUp.scrollList[0] }}嵌入的slot2,这里要放和 slot1里面第一个画面一模一样的东西 </div> </div> </app-scroll-up>
父组件ts
dataObjUp = { time: 50, minLength: 1, width:200, height: 200, unit: 'px', scrollList: ['1111','2222','3333','444','555','666'] }
子组件html
<div class="scroll_outermost_up" [style]="{ width: dataObj.width + dataObj.unit, height: dataObj.height + dataObj.unit }" #outerMost (mouseover)="rollStop('over')" (mouseout)="rollStart(60)"> <div class="outer_box" #outerBox1> <ng-content select=".slot-one"></ng-content> </div> <div class="outer_box" #outerBox2> <ng-content select=".slot-two"></ng-content> </div> </div>
子组件ts
import { Component, ElementRef, OnInit, Input, ViewChild, ViewEncapsulation } from '@angular/core'; @Component({ selector: 'app-scroll-up', templateUrl: './scroll-up.component.html', styleUrls: ['./scroll-up.component.less'], encapsulation: ViewEncapsulation.Emulated, }) export class ScrollUpComponent implements OnInit { constructor() { } ngOnInit(): void { } @Input() public dataObj: any = { time: 50, minLength: 1, width:200, height: 200, unit: 'px', scrollList: ['1111','2222','3333','444','555','666'] } @ViewChild('outerMost', { static: false }) outerMost: ElementRef; @ViewChild('outerBox1', { static: false }) outerBox1: ElementRef; @ViewChild('outerBox2', { static: false }) outerBox2: ElementRef; ngAfterViewInit() { setTimeout(()=>{this.roll(this.dataObj.time)},1000) } timer = null ngOnDestroy() { if (this.timer) clearInterval(this.timer); } roll(t) { var outerMost = this.outerMost.nativeElement if (this.dataObj.scrollList.length < this.dataObj.minLength) { return console.log('不需要滚动') } outerMost.scrollTop = 0; this.rollStart(t); } rollStart(t) { var outerMost = this.outerMost.nativeElement var outerBox1 = this.outerBox1.nativeElement this.rollStop('开始'); this.timer = setInterval(() => { // 当滚动高度大于列表内容高度时恢复为0 outerMost.scrollTop++; if (outerBox1.scrollHeight - outerMost.scrollTop === 1) { outerMost.scrollTop = 0; outerMost.scrollTop++; } if (outerMost.scrollTop >= outerBox1.scrollHeight) { outerMost.scrollTop = 0; outerMost.scrollTop++; } }, t); } rollStop(e) { console.log(e) clearInterval(this.timer); } }
子组件less
.scroll_outermost_up { overflow: hidden; /* 必须 */ cursor: pointer; .outer_box { /deep/.inner_item { background-color: rgb(235, 210, 243); } /deep/.inner_item:nth-child(odd) { background-color: rgb(179, 223, 248); } } }
这篇关于VUE Angular通用动态列表组件-亦可为自动轮播组件-01-根据数据量自动纵向滚动,鼠标划入停止滚动的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-28Vue入门教程:从零开始搭建第一个Vue项目
- 2024-12-28Vue CLI入门指南:快速搭建Vue项目
- 2024-12-28Vue3基础知识入门教程
- 2024-12-28Vue3公共组件开发与使用入门教程
- 2024-12-28Vue CLI学习:新手入门教程
- 2024-12-28Vue CLI学习:轻松入门与实践指南
- 2024-12-28Vue3公共组件学习入门指南
- 2024-12-28Vue3公共组件学习:从入门到上手实战
- 2024-12-28Vue3学习:从入门到初级实战教程
- 2024-12-28Vue3学习:新手入门与初级教程