electron-tabs/demo/electron-tabs.html

61 lines
1.2 KiB
HTML
Raw Normal View History

2017-06-27 15:38:44 -05:00
<!DOCTYPE html>
<html>
<head>
2020-03-10 15:53:22 -05:00
<title>electron-tabs-demo</title>
2017-06-27 15:38:44 -05:00
</head>
<body style="margin:0">
2022-05-24 03:49:24 -05:00
<tab-group new-tab-button="true" sortable="true">
<style>
2022-05-25 08:14:37 -05:00
/* Add custom styles */
2022-05-25 07:44:29 -05:00
.my-badge {
background-color: #327BB1;
2022-05-24 03:49:24 -05:00
}
2022-05-25 08:14:37 -05:00
.my-custom-tab {
color: #d135d1;
2022-05-25 08:14:37 -05:00
font-style: italic;
font-weight: bold;
}
2022-05-24 03:49:24 -05:00
</style>
</tab-group>
2017-06-27 15:38:44 -05:00
2022-05-24 16:38:25 -05:00
<script src="../dist/electron-tabs.js"></script>
2017-06-27 15:38:44 -05:00
<script>
2022-05-23 11:10:29 -05:00
const tabGroup = document.querySelector("tab-group");
2022-05-24 03:05:04 -05:00
tabGroup.on("ready", () => console.info("TabGroup is ready"));
2022-05-23 12:17:47 -05:00
2022-05-23 16:18:52 -05:00
tabGroup.setDefaultTab({
title: "Wikipedia",
2022-05-23 16:56:22 -05:00
src: "https://www.wikipedia.org/",
2022-05-24 03:05:04 -05:00
active: true,
ready: () => console.info("New Tab is ready")
2022-05-23 12:17:47 -05:00
});
2020-02-04 05:13:57 -05:00
tabGroup.addTab({
2022-05-23 12:17:47 -05:00
title: "electron-tabs on NPM",
src: "https://www.npmjs.com/package/electron-tabs",
2022-05-25 07:44:29 -05:00
badge: {
text: "5",
classname: "my-badge"
}
2020-02-04 05:13:57 -05:00
});
tabGroup.addTab({
2022-05-23 12:17:47 -05:00
title: "electron-tabs on Github",
src: "https://github.com/brrd/electron-tabs",
2022-05-25 07:44:29 -05:00
iconURL: "mark-github.svg",
2020-02-04 05:13:57 -05:00
active: true
});
2017-06-27 15:38:44 -05:00
2022-05-25 07:51:16 -05:00
tabGroup.addTab({
title: "My Custom Tab",
2022-05-25 08:14:37 -05:00
src: "page.html",
ready: function(tab) {
tab.element.classList.add("my-custom-tab");
}
});
2017-06-27 15:38:44 -05:00
</script>
</body>
</html>