cocos lua中富文字控制項

2021-10-24 13:29:57 字數 550 閱讀 8231

local rich_text = ccui.richtext:create() -- 建立富文字

rich_text:ignorecontentadaptwithsize(false)    --是否文字自動轉行

rich_text:setcontentsize(500 , 40)   --設定大小

rich_text:setposition(cc.p(0,layout:getcontentsize().height/2))     --設定位置

rich_text:setanchorpoint(cc.p(0,0.5))    --設定錨點

local text1 = ccui.richelementtext:create(1,cc.c3b(255,255,0),255,"歡迎 ","microsoft yahei","20")    --建立文字(顏色,字型等)

rich_text:pushbackelement(text1)    --將文字text1插入到富文字的尾部

layout:addchild(rich_text)    --將富文字新增為layout的子節點

vue中富文字如何匯入

1.在視覺化面板中,安裝執行依賴搜所vue quill editor 2.在專案中main.js中進行註冊 匯入富文字編輯器 import vuequilleditor from vue quill editor 匯入富文字編輯器的樣式 import quill dist quill.core.cs...

vue專案中富文字 quill editor的使用

1.基本使用步驟 npm install vue quill editorimport quill dist quill.core.css import quill dist quill.snow.css import quill dist quill.bubble.css import from ...

Cocos lua給控制項建立觸控事件處理

1.單點觸控 測試 新增label local txt label cc.labelttf create 測試觸控 courier 50 txt label addto self txt label setposition yl.width 2,yl.height 2 100 self.txt la...