electron中使用bootstrap
发布时间:2020-12-17 20:47:59 所属栏目:安全 来源:网络整理
导读:安装 安装bootstrap命令如下: npm install bootstrap --save ? 安装后可能报告如下错误: npm WARN [email?protected] requires a peer of [email?protected]^1.14.3 but none is installed. You must install peer dependencies yourself. ? 需要自行安装p
安装
安装bootstrap命令如下: 安装后可能报告如下错误: 需要自行安装popper,命令如下: 页面引入bootstrap页面引入bootstrap的css和js文件如下: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <link href="./node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet"/> </head> <body> Hello electron! <div> <button id="openFile" class="btn btn-success">Open File</button> <button id="sendMsg" class="btn btn-warning">Send Message (Open File)</button> </div> <script> window.$ = window.jQuery = require(‘./node_modules/jquery/dist/jquery.min.js‘); require(‘./node_modules/bootstrap/dist/js/bootstrap.min.js‘); </script> 注:网上有的例子中,引入bootstrap.min.css是用传统方式引入,即: <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> 这种方式太搞笑了吧,明明已经在本地装好了全套的bootstrap,偏偏CSS还要用网络方式引入,又浪费流量,速度又慢,真是不知道想出这种方式的人是怎么想的。 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |