您好,登錄后才能下訂單哦!
由于在微信小游戲中,無(wú)法使用eui框架(即無(wú)法使用eui.Scroller) . 還好egret框架內(nèi)提供了egret.ScrollView可以完美替代.
一 : 申明及初始化
private _scrollview : egret.ScrollView = null;
this._scrollview = new egret.ScrollView();
二:選擇顯示容器
this._scrollview.setContent( this._list_con );
二-1 : private _list_con : egret.DisplayObjectContainer = null;
三:設(shè)置位置及SIZE
this._scrollview.x = ( ( this._UI_SZ.x - this._content_bg.width ) >> 1 ) + 13;
this._scrollview.y = 101.5;
this._scrollview.width = this._content_size.x;
this._scrollview.height = this._content_size.y;
四:設(shè)置滾動(dòng)方案
this._scrollview.verticalScrollPolicy = "on";
this._scrollview.horizontalScrollPolicy = "off";
四-1 : 此代碼為在豎直方向上滾動(dòng) , 在水平方向上不滾動(dòng)
五:加入到顯示容器
this.addChild( this._scrollview );
六:手動(dòng)設(shè)置滾動(dòng)的距離
this._scrollview.scrollTop = 0;
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。