Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2020-1-capstone-design1
/
PKH_Project1
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
2
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Yoonjunhyeon
2020-06-01 20:58:37 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
2dbd220b6c344250cc1fc42ccecd3fce99e9f567
2dbd220b
1 parent
75841bd5
vue 파일들 추가
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
64 additions
and
15 deletions
web/frontend/src/App.vue
web/frontend/src/components/description.vue
web/frontend/src/components/termOfService.vue
web/frontend/src/components/usedOpensource.vue
web/frontend/src/views/Home.vue
web/frontend/src/App.vue
View file @
2dbd220
...
...
@@ -16,13 +16,15 @@
<v-dialog v-model="clickInfo" max-width="600" class="pa-2">
<v-card elevation="0" outlined class="pa-4">
<v-row justify="center" class="mx-0 mb-8 mt-2">
<v-icon color="
lightblue
">mdi-power-on</v-icon>
<v-icon color="
primary
">mdi-power-on</v-icon>
<div
style="text-align: center; font-size: 22px; font-weight: 400; color: #343a40;"
>Information of This Service</div>
<v-icon color="
lightblue
">mdi-power-on</v-icon>
<v-icon color="
primary
">mdi-power-on</v-icon>
</v-row>
<div>Used Opensource</div>
<v-btn color="primary" class="mt-2" block>Description of service</v-btn>
<v-btn color="primary" class="my-2" block>Term of this service</v-btn>
<v-btn color="primary" block>Used Opensource</v-btn>
</v-card>
</v-dialog>
<v-content>
...
...
web/frontend/src/components/description.vue
0 → 100644
View file @
2dbd220
<template>
<div></div>
</template>
<script>
export default {
};
</script>
<style>
</style>
web/frontend/src/components/termOfService.vue
0 → 100644
View file @
2dbd220
<template>
<div></div>
</template>
<script>
export default {
};
</script>
<style>
</style>
web/frontend/src/components/usedOpensource.vue
0 → 100644
View file @
2dbd220
<template>
<div></div>
</template>
<script>
export default {
};
</script>
<style>
</style>
web/frontend/src/views/Home.vue
View file @
2dbd220
...
...
@@ -12,7 +12,7 @@
<div style="font-size: 34px; font-weight: 500; color: #343a40;">WELCOME</div>
</v-row>
<v-card elevation="0">
<!--
file upload
-->
<!--
데스크톱 화면 설명 요약
-->
<v-row justify="center" class="mx-0 mt-12" v-if="$vuetify.breakpoint.mdAndUp">
<v-flex md7 class="mt-1">
<div
...
...
@@ -34,6 +34,8 @@
</v-card>
</v-flex>
</v-row>
<!-- 모바일 화면 설명 요약 -->
<v-card elevation="0" class="mt-8" v-else>
<div
style="font-size: 20px; font-weight: 300; color: #888; text-align: center"
...
...
@@ -51,13 +53,25 @@
></v-img>
</v-card>
<!-- Set Threshold -->
<div
class="mt-10"
style="font-size: 24px; text-align: center; font-weight: 400; color: #5a5a5a;"
>How To start this service</div>
<div
style="font-size: 20px; font-weight: 300; color: #888; text-align: center; margin-bottom: 5px"
>
<div>Set up Threshold of</div>
<div>Recommended Youtube link</div>
</div>
<v-row style="max-width: 300px; margin: auto">
<v-slider v-model="threshold" :thumb-size="20" thumb-label="always" :min="2" :max="15"></v-slider>
</v-row>
<!-- Upload Video -->
<div
style="font-size: 20px; font-weight: 300; color: #888; text-align: center"
>Just Upload your Video</div>
>
Then,
Just Upload your Video</div>
<v-row justify="center" class="mx-0 mt-2">
<v-card
max-width="500"
...
...
@@ -78,15 +92,8 @@
<input ref="fileInput" style="display: none" type="file" @change="onFileChange" />
</v-card>
</v-row>
<div
style="font-size: 20px; font-weight: 300; color: #888; text-align: center; margin-top: 20px; margin-bottom: 18px"
>
<div>And Set up Threshold of</div>
<div>recommended Youtube link</div>
</div>
<v-row justify="center" class="mx-12">
<v-slider v-model="threshold" :thumb-size="20" thumb-label="always" :min="20" :max="80" ></v-slider>
</v-row>
<!-- 결과 화면 -->
<div
style="font-size: 24px; text-align: center; font-weight: 400; color: #5a5a5a;"
class="mt-10"
...
...
@@ -118,6 +125,7 @@
style="font-size: 20px; font-weight: 300; color: #888; text-align: center"
>Result Show up in each of Boxes!</div>
</v-card>
</v-flex>
</v-layout>
</v-sheet>
...
...
@@ -130,7 +138,7 @@ export default {
videoFile: '',
YoutubeUrl: [],
generatedTag: [],
threshold:
20
,
threshold:
5
,
successDialog: false,
errorDialog: false,
loadingProcess: false,
...
...
Please
register
or
login
to post a comment