This repository has been archived by the owner on Nov 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
223 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width,initial-scale=1.0"> | ||
<link rel="icon" href="<%= BASE_URL %>favicon.ico"> | ||
<title>小窓さん</title> | ||
</head> | ||
<body> | ||
<noscript> | ||
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong> | ||
</noscript> | ||
<div id="app"></div> | ||
<!-- built files will be auto injected --> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
<template lang="pug"> | ||
#welcome | ||
.slider | ||
.tips Tips | ||
carousel( | ||
per-page="1", | ||
autoplay="true", | ||
autoplayHoverPause="false", | ||
autoplayTimeout="6000", | ||
speed="1000", | ||
loop="true" | ||
paginationActiveColor="#efefef", | ||
paginationColor="#000000" | ||
) | ||
slide | ||
.slide-contents | ||
p PDFファイルをドラッグ&ドロップで表示できます | ||
slide | ||
.slide-contents | ||
p Ctrl+Dでお絵かきモードに入れます | ||
slide | ||
.slide-contents | ||
p 画面下部にカーソルを合わせるとカメラの切り替えができます | ||
.options | ||
h1 小窓さんはオンライン会議支援ツールです | ||
ul | ||
li 表示するつもりがなかった資料 | ||
li メール通知 | ||
li チャット通知 | ||
|
||
p 間違って配信してしまったことはありませんか? | ||
p | ||
| このアプリを画面共有することによって | ||
br | ||
| ワイプつき画面を簡単に共有できます。 | ||
br | ||
| 通知を巻き込むことはありません。 | ||
br | ||
| 共有したい資料のみ表示します。 | ||
|
||
p 小窓さんはOSSで開発されています。 | ||
|
||
|
||
#start.btn.btn-default.btn-large(@click="start") 利用をスタート | ||
|
||
</template> | ||
|
||
<script> | ||
import { Carousel, Slide } from 'vue-carousel'; | ||
export default { | ||
name: 'Welcome', | ||
components: { | ||
Carousel, | ||
Slide | ||
}, | ||
methods: { | ||
start(){ | ||
window.electronApi.startMainApp() | ||
} | ||
} | ||
} | ||
</script> | ||
|
||
<style scoped> | ||
.tips { | ||
position: absolute; | ||
font-size: 2em; | ||
left: 10px; | ||
color: white; | ||
} | ||
.slider { | ||
background: rgba(0, 0, 0, 0.8); | ||
} | ||
.slider .slide-contents { | ||
color: white; | ||
text-align: center; | ||
padding:30% 10%; | ||
display: block; | ||
} | ||
.slider,.options{ | ||
width: 50%; | ||
height: 100%; | ||
float: left; | ||
position: relative; | ||
} | ||
.options { | ||
padding: 50px; | ||
} | ||
.options h1 { | ||
font-size: 1.3em; | ||
} | ||
html,body{ | ||
width: 100%; | ||
height: 100%; | ||
} | ||
#welcome { | ||
height: 100%; | ||
width: 100%; | ||
} | ||
#start { | ||
position: absolute; | ||
right: 30px; | ||
bottom: 10px; | ||
width: 140px; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import Vue from 'vue' | ||
import Welcome from './Welcome.vue' | ||
|
||
import 'photon/dist/css/photon.css' | ||
import './assets/style.css' | ||
import './assets/moveable.css' | ||
Vue.config.productionTip = false | ||
|
||
new Vue({ | ||
render: h => h(Welcome), | ||
}).$mount('#app') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module.exports = { | ||
pages: { | ||
index: 'src/main.js', | ||
welcome: 'src/welcome.js' | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters