溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

Egret之egret.ScrollView

發(fā)布時(shí)間:2020-07-05 03:04:43 來(lái)源:網(wǎng)絡(luò) 閱讀:1517 作者:Aonaufly 欄目:開(kāi)發(fā)技術(shù)

由于在微信小游戲中,無(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;
向AI問(wèn)一下細(xì)節(jié)

免責(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)容。

AI