這篇文章主要介紹“Angular+rxjs如何實現(xiàn)拖拽功能”的相關(guān)知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“Angular+rxjs如何實現(xiàn)拖拽功能”文章能幫助大家解決問題。
成都創(chuàng)新互聯(lián)公司是一家朝氣蓬勃的網(wǎng)站建設(shè)公司。公司專注于為企業(yè)提供信息化建設(shè)解決方案。從事網(wǎng)站開發(fā),網(wǎng)站制作,網(wǎng)站設(shè)計,網(wǎng)站模板,微信公眾號開發(fā),軟件開發(fā),微信小程序,10年建站對成都服務(wù)器租用等多個方面,擁有豐富的網(wǎng)站維護經(jīng)驗。
頁面中 video 標簽,當滾動高度超過其位置之后,將其設(shè)置為可在可視區(qū)域自由拖拽。
一個不錯的 Idea
,如果你使用 Angular
的 @angular/cdk/drag-drop
可以輕松實現(xiàn),但是我們這里不使用工具。
好吧,我們來分析下實現(xiàn)的思路:
頁面滾動高度大于視頻所在的位置:那么就是視頻的 bottom
值相對可視窗口的值要小于0,我們需要設(shè)定一個包裹 video
標簽的 div
方便計算,其高度是原設(shè)定 video
的高度。即元素脫離原文檔布局
video
元素可以拖拽,那么其定位需要被改變?yōu)?fixed
video
元素在可視區(qū)內(nèi)自由拖動,那么需要對其 top
, left
值進行限定
所以我們設(shè)定下面的 demo
布局:
有下面這些預(yù)定的樣式:
html, body { height: 6000px; background-color: #fff; }
#anchor { height: 360px; width: 100%; background-color: #F0F0F0; } .video { width: 640px; height: 360px; margin: 0 auto; background-color: black; &.video-fixed { position: fixed; top: 10px; left: 10px; width: 320px; height: 150px; cursor: all-scroll; .masker { display: none; } &:hover { .masker { display: block; position: absolute; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.8); z-index: 2; } } } }
這里還引入了 rxjs
來操作。
元素脫離原文檔布局
剛才已經(jīng)分析了 video
元素脫離文檔的臨界調(diào)節(jié)了:
video的外 div
,即 #anchor
元素的相對視圖的 bottom < 0
。所以我們有:
@ViewChild('anchor', { static: false }) public anchor!: ElementRef; @ViewChild('video', { static: false }) public video!: ElementRef; public scroll!: any; ngAfterViewInit(): void { this.scroll = fromEvent(document, 'scroll'); this.scrollFn(); } // 頁面滾動 public scrollFn() { this.scroll .pipe( debounceTime(50), // 防抖 map(() => this.anchor.nativeElement.getBoundindClientRect().bottom < 0) ) .subscribe((flag: boolean) => { // 添加和移除樣式 if(flag) { this.video.nativeElement.classList.add('video-fixed'); } else { this.video.nativeElement.classList.remove('video-fixed'); } }) }
先獲取 anchor
元素對象,監(jiān)聽頁面對象 document
滾動(我們這里加入了防抖函數(shù)優(yōu)化),當 bottom < 0
的時候,將相關(guān)的樣式 video-fixed
添加給 video
。
元素拖拽
接下來就是實現(xiàn) video
元素的拖拽。這里我們要監(jiān)聽 video
元素的三個事件,分別是鼠標按下 mousedown
,鼠標移動 mousemove
和鼠標抬起 mouseup
。
// demo.component.ts public mouseDown!: any; public mouseUp!: any; public mouseMove!: any; ngAfterViewInit(): void { this.mouseDown = fromEvent(this.video.nativeElement, 'mousedown'); // 目標元素按下,即 video this.mouseMove = fromEvent(document, 'mousemove'); // 元素在文檔內(nèi)移動 this.mouseUp = fromEvent(document, 'mouseup'); // 鼠標抬起 this.moveFn() } // 目標元素移動 public moveFn() { this.mouseDown .pipe( filter(() => this.video.nativeElement.classList.contains('video-fixed')), map(() => this.mouseMove.pipe( throttleTime(50), // 節(jié)流 takeUntil(this.mouseUp) )), // concatAll 順序接受上游拋出的各個數(shù)據(jù)流作為它的數(shù)據(jù), 若前面的數(shù)據(jù)流不能同步的完結(jié),它會暫存后續(xù)數(shù)據(jù)流,當前數(shù)據(jù)流完成后它才會訂閱后一個暫存的數(shù)據(jù)流 concatAll(), withLatestFrom(this.mouseDown, (move:any, down:any) => { return { x: this.validValue(move.clientX - down.offsetX, window.innerWidth - this.video.nativeElement.offsetWidth, 0), y: this.validValue(move.clientY - down.offsetY, window.innerHeight - this.video.nativeElement.offsetHeight, 0) } }) ) .subscribe((position: { x: number, y: number }) => { this.video.nativeElement.style.top = position.y + 'px'; this.video.nativeElement.style.left = position.x + 'px'; }) } // 校驗邊界值 public validValue = (value:number, max:number, min: number) => { return Math.min(Math.max(value, min), max) }
我們監(jiān)聽目標元素(filter 函數(shù))被鼠標按下,然后鼠標可以在 document
范圍內(nèi)移動(這里用節(jié)流函數(shù)優(yōu)化了下),直到監(jiān)聽到鼠標抬起。在移動的過程中,計算目標元素的相對可視窗口左側(cè)和頂部的距離,將值賦予到 left
和 top
。
這里的計算 move.clientX - down.offsetX, window.innerWidth - this.video.nativeElement.offsetWidth
,相關(guān)的概念也許你不是很清楚,不過沒關(guān)系,上面的內(nèi)容,理解思路即可。
關(guān)于“Angular+rxjs如何實現(xiàn)拖拽功能”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,小編每天都會為大家更新不同的知識點。