Unity實現引導頁效果

2022-09-26 02:27:14 字數 1183 閱讀 8005

效果圖:

1、建立canvas,設定rendermode=screenspace-overlay,uiscalemode = scalewithscreensize,

referenceresolution(x=1080,y=1920)

2、建立乙個rawimage,命www.cppcns.com名為(parentgoimg),並做如下設定

3、在parentgoimg下建幾個rawimage,賦予想展示的,並做如下設定

4、新增如下指令碼給parentgoimg

using system.collections;

using system.collections.generic;

using unityengine;

using unityengine.eventsystems;

using dg.tweening;

using unityengine.ui;

public class asd : monobeh**iour,ibegindraghandler, idraghandler,ienddraghandler

minx = -((transform.childcount - 1) * screen.width);

maxx = 0.0f;

//如果移動超過頁面的五分之一,則切換頁面

sensitivityx = screen.width / 5;

} public void onbegindrag(pointereventdata eventdata)

public void ondrag(pointereventdata eventdata)

else if (transform.position.x >= maxx)

} public void onenddrag(pointereventdata eventdata)

程式設計客棧 else if (transform.position.x < getrightx())

transform.domovex(-(currentshowindex - 1) * screen.width, 0.2f);

} float getleftx()

float getriwww.cppcns.comghtx()

}執行即可看到效果

本文標題: unity實現引導頁效果

本文位址:

winfrom程式 引導頁淡出效果

using system using system.collections.generic using system.componentmodel using system.data using system.drawing using system.text using system.window...

引導頁的圓點滑動效果

1.activity檔案 for int i 0 i view point new view this point.setbackgroundresource r.drawable.point grey 設定引導頁圓點顏色 linearlayout.layoutparams params new l...

iOS 引導頁實現

myintroductionview.h myintroductionview.m myintroductionpanel.h myintroductionpanel.m 這四個檔案,再加上一些影象資源加到你的工程中去。之後如果要修改影象等資源只要在相應位置修改就好了。在對應的.件中引入標頭檔案並且...