- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想创建一个带有自定义按钮、 slider 的托盘菜单应用程序,也许还有一些不错的过渡效果,像这样的页眉和页脚:
该应用程序需要在 Linux、Windows 和 Mac 上运行。
我猜想它应该可以使用桌面网络应用程序 + 一些 HTML,但我找不到任何框架的任何有用示例。每个示例都使用了操作系统的菜单,但它没有我需要的元素。
谁能指导我如何在任何网络应用程序框架中或多或少地实现这一点?
最佳答案
这可以很容易地在 Electron 中完成,实际上我自己在下图中创建了一些托盘应用程序:
您需要的基本文件是:
index.html
main.js
package.json
index.html
你会按照你想要的方式设计你的应用程序。在上面的示例中,我只使用了几个输入框并使用 CSS 设置它们的样式。
main.js
文件是您放置主要代码以驱动应用程序的位置。
package.json
文件是您放置应用程序、开发依赖项等详细信息的位置。
main.js
文件。以下是
main.js
的示例上述应用程序的文件。我添加了评论以帮助您理解:
// Sets variables (const)
const {app, BrowserWindow, ipcMain, Tray} = require('electron')
const path = require('path')
const assetsDirectory = path.join(__dirname, 'img')
let tray = undefined
let window = undefined
// Don't show the app in the doc
app.dock.hide()
// Creates tray & window
app.on('ready', () => {
createTray()
createWindow()
})
// Quit the app when the window is closed
app.on('window-all-closed', () => {
app.quit()
})
// Creates tray image & toggles window on click
const createTray = () => {
tray = new Tray(path.join(assetsDirectory, 'icon.png'))
tray.on('click', function (event) {
toggleWindow()
})
}
const getWindowPosition = () => {
const windowBounds = window.getBounds()
const trayBounds = tray.getBounds()
// Center window horizontally below the tray icon
const x = Math.round(trayBounds.x + (trayBounds.width / 2) - (windowBounds.width / 2))
// Position window 4 pixels vertically below the tray icon
const y = Math.round(trayBounds.y + trayBounds.height + 3)
return {x: x, y: y}
}
// Creates window & specifies its values
const createWindow = () => {
window = new BrowserWindow({
width: 250,
height: 310,
show: false,
frame: false,
fullscreenable: false,
resizable: false,
transparent: true,
'node-integration': false
})
// This is where the index.html file is loaded into the window
window.loadURL('file://' + __dirname + '/index.html');
// Hide the window when it loses focus
window.on('blur', () => {
if (!window.webContents.isDevToolsOpened()) {
window.hide()
}
})
}
const toggleWindow = () => {
if (window.isVisible()) {
window.hide()
} else {
showWindow()
}
}
const showWindow = () => {
const position = getWindowPosition()
window.setPosition(position.x, position.y, false)
window.show()
window.focus()
}
ipcMain.on('show-window', () => {
showWindow()
})
以下是
package.json
的示例文件:
{
"name": "NAMEOFAPP",
"description": "DESCRIPTION OF APP",
"version": "0.1.0",
"main": "main.js",
"license": "MIT",
"author": "NAME OF AUTHOR",
"scripts": {
"start": "electron ."
},
"devDependencies": {
"electron-packager": "^8.2.0"
}
}
所以,如果你创建一个简单的
index.html
文件说“Hello World”,将上述代码放入
main.js
文件和
package.json
文件并运行它将从托盘运行的应用程序。
关于desktop-application - 桌面 Web 应用程序中的丰富 HTML 托盘菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40485102/
我的网站有两个版本。桌面版和移动版。 当用户通过智能手机访问我的网站时,我将其指向“移动版本”->“m.mywebsite.com”。 为此,我使用了名为 Mobile Detect 的项目 到目前为
在java中,我尝试使用Desktop.getDesktop().open(File file)打开一个文件,但它抛出IOException,尽管Desktop.getDesktop().isSupp
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
JetBrains Compose for Desktop 中有没有办法更改标题栏背景颜色或仅将其更改为深色模式?我使用的是 MacOS,因此该栏可以是浅色或深色。也可以让标题栏本身不可见(但保留关闭
Tableau 架构显示 Desktop 连接到 Tableau Server(使用网关),然后连接到 Tableau Server 上的数据服务器。我的问题是 tableau 客户端必须与 tabl
我在 Flutter 桌面上工作了一段时间,并且实现过程中一切顺利。到目前为止,我只实现了 UI、网络和内存缓存。现在我开始面临一个真正的问题,我无法找到解决方案。是否有一些开箱即用的可能性将文件保存
有没有办法将 Github Desktop 中的文件更改列表显示为树而不是平面文件列表? 最佳答案 似乎该功能存在于桌面版 Git 的 v1 中,并在应用程序的 v2 中被删除。 2018 年有帖子要
有谁知道在移动浏览器中选择桌面 View 选项会如何影响 CSS 媒体查询和 Javascript? 我正在制作一个仅供移动用户使用的网站。当我在使用普通 Android 浏览器时选择“桌面 View
/usr/share/applications 中的.desktop 文件、xdg-desktop-menu 命令和update-desktop-database 命令之间有什么关系? 我正在尝试创建
当项目属于我的帐户(或我的组织之一)时,Github Desktop 让我可以轻松地从 Github 克隆项目。 我有什么办法可以使用 Github Desktop 克隆属于其他人的公共(public
我不想被 Selenium RC 启动的浏览器打扰。有什么方法可以强制它在另一个 X11 桌面上运行浏览器吗?在另一个桌面上运行 Selenuim 服务器并不能解决问题。 Vít Šesták 'v6
因此,我正在构建的 C 程序必须放置在我的 MAC 计算机 (OS X 10.9.4) 桌面上的 PA_mobile 文件中,以便它可以访问脚本和文本文件缓存与之相关。 现在,当我的程序启动时,它会验
为了在 Windows 平台上运行 Flutter,我使用 go-flutter-desktop 来实现。 我需要在单击按钮时打开 Excel 文件。 经过长时间的努力,我想分享这个片段 最佳答案 i
背景 我正在使用 Citrix Workspace(版本 20.2.0.25(2002))中的 Desktop Viewer 功能从我的家用计算机访问我的工作计算机。 请求 我希望能够更轻松地将我的(
我通过 NetBeans8.0 使用 Oracle JDK 1.8.0_05 在 Ubuntu 12.04 LTS 64 位(带有 Gnome Shell)上运行一些 Java 代码。 以下函数在 M
/System/Library/Frameworks/ScreenSaver.framework/Resources/ScreenSaverEngine.app/Contents/MacOS/Scre
嗨,我有一个 Linux 实例,我正在使用桌面类。代码: String path = request.getParameter("path"); try {
当我选择在桌面应用程序中显示检查器时,出现以下错误。 正如他们的 Wiki 所说,我遵循了这个: http://wiki.appcelerator.org/display/guides/Enablin
我在 OSX、Objective-C 上。 我有一个像 这样的路径/NSURL /Users/xxx/Desktop/image2.png 但我将它传递给第三方应用程序,该应用程序会像 excpect
关闭。这个问题是opinion-based .它目前不接受答案。 想改进这个问题?更新问题,以便 editing this post 可以用事实和引用来回答它. 4年前关闭。 Improve this
我是一名优秀的程序员,十分优秀!