私はcssでグラデーションの背景を作成しましたが、コロナsdkの背景としてどのように表示するかわかりません。私はこのリンクを読んでウェブを呼び出す必要はないと思う。https://docs.coronalabs.com/api/library/native/newWebView.htmlコロナsdkのWeb背景
しかし、その方法はわからない。誰か助けてくれますか?
main.lua:
local webView = native.newWebView(220, 220, 320, 480)
webView:request("file:///C:/Users/user/Documents/test/html.html")
css.css:
body{
background: linear-gradient(23deg, #243b66, #246634, #242a66, #576624, #664324, #662465, #245566, #663e24, #666624);
background-size: 1800% 1800%;
-webkit-animation: AnimationName 130s ease infinite;
-moz-animation: AnimationName 150s ease infinite;
-o-animation: AnimationName 150s ease infinite;
animation: AnimationName 150s ease infinite;
}
@-webkit-keyframes AnimationName {
0%{background-position:0% 57%}
50%{background-position:100% 44%}
100%{background-position:0% 57%}
}
@-moz-keyframes AnimationName {
0%{background-position:0% 57%}
50%{background-position:100% 44%}
100%{background-position:0% 57%}
}
@-o-keyframes AnimationName {
0%{background-position:0% 57%}
50%{background-position:100% 44%}
100%{background-position:0% 57%}
}
@keyframes AnimationName {
0%{background-position:0% 57%}
50%{background-position:100% 44%}
100%{background-position:0% 57%}
}
UPDATE:より慎重
-- Data (string) to write
local saveData = "My app state data"
-- Path for the file to write
local path = system.pathForFile("html.html", system.DocumentsDirectory)
-- Open the file handle
local file, errorString = io.open(path, "w")
if not file then
-- Error occurred; output the cause
print("File error: " .. errorString)
else
-- Write data to file
file:write(saveData)
-- Close the file handle
io.close(file)
end
file = nil
を使用して
html.html
ファイルにコードを置くことができますか? – 6623mshtml.htmlが置かれているのと同じディレクトリに – Vyacheslav
はまだ動作しません。これは私が持っているものです – 6623ms