我一直在为我一直在研究的应用程序尝试不同的框架。我主要使用了appjs和deskshell。我现在正在尝试deskshell。谁能帮我做一个闪屏?我什至不知道如何开始它。这是我到目前为止所拥有的(非常基本的)。
默认.html:
<!DOCTYPE html>
<html lang="en">
<head>
<title> Anon VPN Connection Software </title>
<link rel="stylesheet" type="text/css" href="" />
<link rel="stylesheet" type="text/css" href="" />
<link rel="stylesheet" type="text/css" href="" />
<link rel="stylesheet" type="text/css" href="" />
<script type="text/javascript" src=""></script>
<script type="text/javascript" src=""></script>
<script type="text/javascript" src=""></script>
<script type="text/javascript" src=""></script>
</head>
<body lang="en" onLoad="">
<p> Anon VPN Connection Software </p>
</body>
</html>
Anon VPN.desk:
{
"name": "Anon VPN Connection Software",
"author": "Dustin Angeletti",
"Descript": "Anon VPN, SSH+, and SSH Connection Software",
"licence": "MIT",
"version": "1.0",
"frontend": "chromium-portable",
"backend": "node",
"main": "app.js",
"defaultLocation": "Default.html",
"htdocs": "contents",
"width": "800",
"height": "500",
"exitOnAppWinClose": true
}
应用程序.js:
var running = deskShell.startApp({
});