android短影片開發,圖片視差滾動
android短影片開發,圖片視差滾動
const imgs = ['./assets/1.jpg', './assets/2.png', './assets/3.jpg'] let currentIndex = 0 const scrollContainer = document.querySelector('.scroll-container') function creatItem(index) { let imgUrl = imgs[index] const item = document.createElement('div') item.classList.add('item') item.innerHTML = `<img src=${imgUrl} />` scrollContainer.appendChild(item) return item } function init() { scrollContainer.innerHTML = '' let preIndex = currentIndex - 1 < 0 ? imgs.length - 1 : currentIndex - 1 let nextIndex = currentIndex + 1 > imgs.length - 1 ? 0 : currentIndex + 1 creatItem(preIndex).classList.add('pre') creatItem(currentIndex).classList.add('cur') creatItem(nextIndex).classList.add('next') } init() let isAnimation = false scrollContainer.addEventListener('wheel', (e) => { if ((e.deltaY = 0)) { return } if (isAnimation) { return } isAnimation = true if (e.deltaY > 0) { //向下滾動 scrollContainer.classList.add('scroll-down') currentIndex = currentIndex + 1 > imgs.length - 1 ? 0 : currentIndex + 1 } else { //向上滾動 scrollContainer.classList.add('scroll-up') currentIndex = currentIndex - 1 < 0 ? imgs.length - 1 : currentIndex - 1 } }) scrollContainer.addEventListener('transitionend', (e) => { isAnimation = false scrollContainer.classList.remove('scroll-up') scrollContainer.classList.remove('scroll-down') init() })
以上就是android短影片開發,圖片視差滾動, 更多內容歡迎關注之後的文章
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2993084/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- android短視訊開發,點選靜態圖片自動跳轉播放視訊Android
- 短視訊開發,Android和JS互調實現圖片傳遞AndroidJS
- 短視訊app開發,短視訊動態功能上傳圖片時,規定圖片壓縮的大小APP
- 什麼是視差滾動?如何實現視差滾動的效果?
- android短影片開發,兩個ViewPager聯動效果AndroidViewpager
- android短視訊開發,呼叫相機、相簿,壓縮圖片後上傳Android
- 短視訊程式開發,RecyclerView自帶的滾動條View
- CSS完成視差滾動效果CSS
- 滾動視差?CSS 不在話下CSS
- android短視訊開發,上傳視訊自動新增水印Android
- 短視訊app開發,內部標題進行滾動播放APP
- 短視訊平臺開發,圖片上傳和圖片預覽功能實現
- 前端-滾動視差?CSS 不在話下前端CSS
- 仿網易LOFTER視差滾動列表
- 頁面圖片自動滾動
- 短視訊平臺開發,在上傳圖片時,自動新增平臺的水印
- 短視訊app開發,三種圖片並排展示的方式APP
- CSS例項:翻轉圖片、滾動圖片欄、開啟大門CSS
- 短視訊平臺開發,將圖片、視訊儲存到本地的相簿中
- PPT製作電視螢幕播放圖片滾動動畫教程動畫
- Android開發筆記——點選檢視大圖過渡動畫與圖片縮放與移動Android筆記動畫
- jQuery圖片無縫滾動效果jQuery
- 短影片app原始碼,Vue3滾動載入APP原始碼Vue
- 移動短影片直播開發,短影片原始碼搭建社交平臺原生APP原始碼APP
- Android端的短視訊開發,我們該如何快速實現移動端短視訊功能?Android
- 短視訊直播原始碼,動態釋出時選擇圖片、上傳圖片原始碼
- android短視訊開發,仿三方軟體列表滑動Android
- 短視訊技術詳解:Android端的短視訊開發技術Android
- 短視訊平臺開發,點選連結、圖片自動跳轉到新的頁面
- android短視訊開發,自定義下拉選單Android
- 短視訊直播系統開發直播短視訊程式搭建短視訊互動直播
- 短影片平臺開發,首先要搭建短影片框架框架
- android短影片開發,uniapp頁面捲軸到指定位置AndroidAPP
- 短視訊軟體開發,ios啟動圖適配和啟動圖示適配iOS
- 圖片影片檢視軟體ApolloOne MacMac
- 滑鼠拖動圖片,禁止在新視窗中開啟圖片
- android短視訊開發,實現動態點贊出現的點贊動畫Android動畫
- CSS 例項之滾動的圖片欄CSS