溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Electron頁內(nèi)查找模塊介紹(代碼示例)

發(fā)布時(shí)間:2020-10-28 14:20:39 來源:億速云 閱讀:229 作者:小新 欄目:web開發(fā)

Electron頁內(nèi)查找模塊介紹(代碼示例)?這個(gè)問題可能是我們?nèi)粘W(xué)習(xí)或工作經(jīng)常見到的。希望通過這個(gè)問題能讓你收獲頗深。下面是小編給大家?guī)淼膮⒖純?nèi)容,讓我們一起來看看吧!

實(shí)現(xiàn)Electron app頁內(nèi)按關(guān)鍵字查找匹配文本的功能

特征

依賴于Electron的findInPage API

支持使用者靈活配置UI界面

支持區(qū)分大小寫

當(dāng)用戶輸入時(shí)自動(dòng)查找

查找輸入框文本隔離,不會(huì)被匹配到

支持以下Electron版本 ^1.8.7, ^2.0.0, ^3.0.0, ^4.0.0

支持以下平臺(tái) Windows, Linux, Mac

演示

默認(rèn)UI

Electron頁內(nèi)查找模塊介紹(代碼示例)

定制化UI

Electron頁內(nèi)查找模塊介紹(代碼示例)

安裝

$   npm install electron-find --save

使用

# 引入模塊
import { remote, ipcRenderer } from 'electron'
import { FindInPage } from 'electron-find'

# 使用默認(rèn)配置來創(chuàng)建實(shí)例
let findInPage = new FindInPage(remote.getCurrentWebContents())
findInPage.openFindWindow()

# 開啟預(yù)加載選項(xiàng),創(chuàng)建實(shí)例的時(shí)候會(huì)同時(shí)加載查找窗口相關(guān)dom
let findInPage = new FindInPage(remote.getCurrentWebContents(), {
  preload: true
})
findInPage.openFindWindow()

# 配置父節(jié)點(diǎn)元素, 默認(rèn)為 document.body
let findInPage = new FindInPage(remote.getCurrentWebContents(), {
  parentElement: document.querySelector('#id')
})
findInPage.openFindWindow()

# 配置查找窗口顯示或隱藏的過渡周期, 默認(rèn)為 300 (ms)
let findInPage = new FindInPage(remote.getCurrentWebContents(), {
  duration: 200
})
findInPage.openFindWindow()

# 配置查找窗口相對(duì)于父級(jí)定位節(jié)點(diǎn)的偏移量
let findInPage = new FindInPage(remote.getCurrentWebContents(), {
  offsetTop: 20,
  offsetRight: 30
})
findInPage.openFindWindow()

# 自定義UI界面顏色
let findInPage = new FindInPage(remote.getCurrentWebContents(), {
  boxBgColor: '#333',
  boxShadowColor: '#000',
  inputColor: '#aaa',
  inputBgColor: '#222',
  inputFocusColor: '#555',
  textColor: '#aaa',
  textHoverBgColor: '#555',
  caseSelectedColor: '#555'
})
findInPage.openFindWindow()

# 參考demo
npm install
npm run e

快捷鍵

Enter: 查找下一個(gè)
Shift + Enter: 查找上一個(gè)
Esc: 關(guān)閉窗口

另外, 可以參考demo,使用全局快捷鍵來打開窗口。

API

類: FindInPage

new FindInPage(webContents, [options])

webContents  Object(required) - 渲染進(jìn)程的webContents對(duì)象

options  Object(optional)

preload  Boolean - 創(chuàng)建實(shí)例的時(shí)候是否預(yù)加載查找窗口。 默認(rèn)為 false。

parentElement  Object - 指定查找窗口的父級(jí)節(jié)點(diǎn)。 默認(rèn)為 document.body。

duration  Number - 指定查找窗口顯示或隱藏的過渡周期。 默認(rèn)為 300 (ms)。

offsetTop  Number - 指定查找窗口相對(duì)于父級(jí)定位元素頂部偏移量。 默認(rèn)為 5。

offsetRight  Number - 指定查找窗口相對(duì)于父級(jí)定位元素右邊偏移量。 默認(rèn)為 5。

boxBgColor  String - 配置查找窗口背景色。 默認(rèn)為 "#ffffff"。

boxShadowColor  String - 配置查找窗口陰影色。 默認(rèn)為 "#909399"。

inputColor  String - 配置輸入框文本顏色。 默認(rèn)為 "#606266"。

inputBgColor  String - 配置輸入框背景顏色。 默認(rèn)為 "#f0f0f0"。

inputFocusColor  String - 配置輸入框聚焦時(shí)的邊框顏色。 默認(rèn)為 "#c5ade0"。

textColor  String - 配置查找窗口中文本顏色。 默認(rèn)為 "#606266"。

textHoverBgColor  String - 配置鼠標(biāo)懸停文本時(shí)的背景色。 默認(rèn)為 "#eaeaea"。

caseSelectedColor  String - 配置區(qū)分大小寫選項(xiàng)選中時(shí)的邊框顏色。 默認(rèn)為 "#c5ade0"。

實(shí)例方法

使用new FindInPage 創(chuàng)建的實(shí)例具有以下方法:      

findInPage.openFindWindow()  
當(dāng)查找窗口關(guān)閉時(shí),打開窗口。 當(dāng)查找窗口已經(jīng)打開時(shí),聚焦輸入框。  
   
findInPage.closeFindWindow()  
關(guān)閉窗口。    
   
findInPage.destroy()  
關(guān)閉窗口,清除對(duì)象的引用,釋放內(nèi)存。

感謝各位的閱讀!看完上述內(nèi)容,你們對(duì)Electron頁內(nèi)查找模塊介紹(代碼示例)大概了解了嗎?希望文章內(nèi)容對(duì)大家有所幫助。如果想了解更多相關(guān)文章內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI