這個(gè)月,比較忙,遇到某位同學(xué)問(wèn)我一個(gè)問(wèn)題:在小程序里實(shí)現(xiàn)微信好友列表點(diǎn)擊右側(cè)字母列表跳轉(zhuǎn)對(duì)應(yīng)位置效果。寫(xiě)了個(gè)demo,核心部分很簡(jiǎn)單,所以沒(méi)多少注釋?zhuān)绻龅絾?wèn)題就加群?jiǎn)栁野伞?/p>
核心技術(shù)點(diǎn):
1、小程序scroll-view組件的scroll-into-view, scroll-with-animation. scroll-y屬性。
2、小程序的touch事件的應(yīng)用。
3、Js定時(shí)器的應(yīng)用。
view頁(yè)面代碼:
index.wxml
-
<!--index.wxml-->
-
<view class="container" scroll-y>
-
<scroll-view class="info" id="info" scroll-with-animation scroll-y scroll-top="200" scroll-into-view="{{toView}}" style="height:{{height}}px;">
-
<view class="iitem" id="{{item.id}}" wx:for="{{info_list}}" wx:key="1">
|