BrowserView
Un BrowserView
peut être utilisé pour intégrer des contenus web supplémentaires dans un BrowserWindow
. C'est comme une fenêtre enfant, sauf qu'il est positionné par rapport à sa fenêtre propriétaire. Il se veut être une alternative à la balise webview
.
Classe : BrowserView
Créer et contrôle les fenêtres.
Processus : Main
Example
// Dans le processus main.
const { app, BrowserView, BrowserWindow } = require('electron')
app.whenReady().then(() => {
const win = new BrowserWindow({ width: 800, height: 600 })
const view = new BrowserView()
win.setBrowserView(view)
view.setBounds({ x: 0, y: 0, width: 300, height: 300 })
view.webContents.loadURL('https://electronjs.org')
})
new BrowserView([options])
Experimental
Propriétés d'instance
Les objets créés avec new BrowserView
ont les propriétés suivantes :
view.webContents
Experimental
Un objet WebContents
appartient à cette vue.
Méthodes d’instance
Les objets créés avec new BrowserView
ont les méthodes d’instance suivant :
view.setAutoResize(options)
Experimental
- Objet
options
width
boolean (optional) - Iftrue
, the view's width will grow and shrink together with the window.false
par défaut.height
boolean (optional) - Iftrue
, the view's height will grow and shrink together with the window.false
par défaut.horizontal
boolean (optional) - Iftrue
, the view's x position and width will grow and shrink proportionally with the window.false
par défaut.vertical
boolean (optional) - Iftrue
, the view's y position and height will grow and shrink proportionally with the window.false
par défaut.
view.setBounds(bounds)
Experimental
bounds
Rectangle
Redimensionne et déplace la vue vers les limites fournies par rapport à la fenêtre.
view.getBounds()
Expérimental
Retourne Rectangle
Les limites
de cette instance BrowserView comme Object
.
view.setBackgroundColor(color)
Experimental
color
string - Color in Hex, RGB, ARGB, HSL, HSLA or named CSS color format. The alpha channel is optional for the hex type.
Examples of valid color
values:
- Hex
- #fff (RGB)
- #ffff (ARGB)
- #ffffff (RRGGBB)
- #ffffffff (AARRGGBB)
- RGB
- rgb(([\d]+),\s([\d]+),\s([\d]+))
- e.g. rgb(255, 255, 255)
- rgb(([\d]+),\s([\d]+),\s([\d]+))
- RGBA
- rgba(([\d]+),\s([\d]+),\s([\d]+),\s*([\d.]+))
- e.g. rgba(255, 255, 255, 1.0)
- rgba(([\d]+),\s([\d]+),\s([\d]+),\s*([\d.]+))
- HSL
- hsl((-?[\d.]+),\s([\d.]+)%,\s([\d.]+)%)
- e.g. hsl(200, 20%, 50%)
- hsl((-?[\d.]+),\s([\d.]+)%,\s([\d.]+)%)
- HSLA
- hsla((-?[\d.]+),\s([\d.]+)%,\s([\d.]+)%,\s*([\d.]+))
- e.g. hsla(200, 20%, 50%, 0.5)
- hsla((-?[\d.]+),\s([\d.]+)%,\s([\d.]+)%,\s*([\d.]+))
- Color name
- Options are listed in SkParseColor.cpp
- Similar to CSS Color Module Level 3 keywords, but case-sensitive.
- e.g.
blueviolet
orred
- e.g.
Note: Hex format with alpha takes AARRGGBB
or ARGB
, not RRGGBBA
or RGA
.