接著前面的行動端效果講,這次講解的的是行動端IndexList效果介紹
的實作原理。效果如下:
程式碼請看這裡:github
#手機端效果之swiper
行動裝置效果之picker
#手機端效果之cellSwiper
整體來說的原理就是當點擊或滑動右邊的索引條時,透過取得點擊的索引值來讓左邊的內容滑動到相應的位置。其中怎麼滑到具體的位置,看下面分解:
<p class="indexlist"> <ul class="indexlist-content" id="content"> <!-- 需要生成的内容 --> </ul> <p class="indexlist-nav" id="nav"> <ul class="indexlist-navlist" id="navList"> <-- 需要生成的索引条 --> < /ul> </p> <p class="indexlist-indicator" style="display: none;" id="indicator"> </p> </p>
indexList是採用
vue元件產生
DOM,我這裡大致使用
javascript來模擬產生
DOM。
// 内容填充function initialDOM() { // D.data 获取内容数据 var data = D.data; var contentHtml = ''; var navHtml = ''; // 初始化内容和NAV data.forEach(function(d) { var index = d.index; var items = d.items; navHtml += '<li class="indexlist-navitem">'+ index +'</li>'; contentHtml += '<li class="indexsection" data-index="'+ index +'"><p class="indexsection-index">'+ index +'</p><ul>'; items.forEach(function(item) { contentHtml += '<a class="cell"><p class="cell-wrapper"><p class="cell-title"><span class="cell-text">'+ item +'</span></p></p></a>'; }); contentHtml += '</ul></li>'; }); content.innerHTML = contentHtml; navList.innerHTML = navHtml;}// 样式初始化if (!currentHeight) { currentHeight = document.documentElement.clientHeight -content.行動端IndexList效果介紹().top;}// 右边索引栏的宽度navWidth = nav.clientWidth;// 左边内容的初始化高度和右边距// 高度为当前页面的高度与内容top的差值content.style.marginRight = navWidth + 'px';content.style.height = currentHeight + 'px';
touchstart事件的結尾處,在
window上綁定了
touchmove與
touchend事件,是為了使得滑動得區域更大,只有在開始的時候在索引欄上觸發了
touchstart事件時,之後再
window上觸發滑動和結束事件,這就意味著我們在滑動的過程中可以在左側的內容區域滑動,同時也能達到
index的效果。
function handleTouchstart(e) { // 如果不是从索引栏开始滑动,则直接return // 保证了左侧内容区域能够正常滑动 if (e.target.tagName !== 'LI') { return; } // 记录开始的clientX值,这个clientX值将在之后的滑动中持续用到,用于定位 navOffsetX = e.changedTouches[0].clientX; // 内容滑动到指定区域 scrollList(e.changedTouches[0].clientY); if (indicatorTime) { clearTimeout(indicatorTime); } moving = true; // 在window区域注册滑动和结束事件 window.addEventListener('touchmove', handleTouchMove, { passive: false }); window.addEventListener('touchend', handleTouchEnd);}
e.changedTouches,這個
API可以去
MDN查一下。
changedTouches和
touches的區別並不是特別大,
changedTouches在同一點點擊兩次,第二次將不會有
touch值。具體可以看這篇文章
function scrollList(y) { // 通过当前的y值以及之前记录的clientX值来获得索引栏中的对应item var currentItem = document.elementFromPoint(navOffsetX, y); if (!currentItem || !currentItem.classList.contains('indexlist-navitem')) { return; } // 显示指示器 currentIndicator = currentItem.innerText; indicator.innerText = currentIndicator; indicator.style.display = ''; // 找到左侧内容的对应section var targets = [].slice.call(sections).filter(function(section) { var index = section.getAttribute('data-index'); return index === currentItem.innerText; }); var targetDOM; if (targets.length > 0) { targetDOM = targets[0]; // 通过对比要滑动到的区域的top值与最开始的一个区域的top值 // 两者的差值即为要滚动的距离 content.scrollTop = targetDOM.行動端IndexList效果介紹().top - firstSection.行動端IndexList效果介紹().top; // 或者使用行動端IndexList效果介紹来达到相同的目的 // 不过存在兼容性的问题 // targetDOM.行動端IndexList效果介紹(); }}
elementFromPoint的
API#可以看這裡
行動端IndexList效果介紹和
行動端IndexList效果介紹的相容性
window上的滑動事件
window.removeEventListener('touchmove', handleTouchMove);window.removeEventListener('touchend', handleTouchEnd);
changedTouches以及
elementFromPoint等
API的學習。
以上是行動端IndexList效果介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!