このコミットが含まれているのは:
テクニカル諏訪子 2020-05-28 22:04:49 +09:00
コミット 1706791eaa
13個のファイルの変更253行の追加11行の削除

バイナリ
public/img/bash/discord_top_left.png ノーマルファイル

バイナリファイルは表示されません。

変更後

幅:  |  高さ:  |  サイズ: 1.4 KiB

バイナリ
public/img/niconico.png ノーマルファイル

バイナリファイルは表示されません。

変更後

幅:  |  高さ:  |  サイズ: 7.2 KiB

バイナリ
public/img/youtube.png ノーマルファイル

バイナリファイルは表示されません。

変更後

幅:  |  高さ:  |  サイズ: 5.5 KiB

ファイルの表示

@ -14,7 +14,11 @@
"/img/bash/bottom_bg.png": "/img/bash/bottom_bg.png",
"/img/bash/bottom_left.png": "/img/bash/bottom_left.png",
"/img/bash/bottom_right.png": "/img/bash/bottom_right.png",
"/img/bash/discord_top_left.png": "/img/bash/discord_top_left.png",
"/img/bash/left_bg.png": "/img/bash/left_bg.png",
"/img/bash/note_bg.png": "/img/bash/note_bg.png",
"/img/bash/note_icon.png": "/img/bash/note_icon.png",
"/img/bash/note_top_left.png": "/img/bash/note_top_left.png",
"/img/bash/right_bg.png": "/img/bash/right_bg.png",
"/img/bash/root_bg.png": "/img/bash/root_bg.png",
"/img/bash/top_bg.png": "/img/bash/top_bg.png",
@ -25,8 +29,5 @@
"/img/bash/top_min.png": "/img/bash/top_min.png",
"/img/bash/top_right_hover.png": "/img/bash/top_right_hover.png",
"/img/bash/top_right.png": "/img/bash/top_right.png",
"/img/bash/user_bg.png": "/img/bash/user_bg.png",
"/img/bash/note_bg.png": "/img/bash/note_bg.png",
"/img/bash/note_icon.png": "/img/bash/note_icon.png",
"/img/bash/note_top_left.png": "/img/bash/note_top_left.png"
"/img/bash/user_bg.png": "/img/bash/user_bg.png"
}

バイナリ
resources/img/bash/discord_top_left.png ノーマルファイル

バイナリファイルは表示されません。

変更後

幅:  |  高さ:  |  サイズ: 1.4 KiB

バイナリ
resources/img/niconico.png ノーマルファイル

バイナリファイルは表示されません。

変更後

幅:  |  高さ:  |  サイズ: 7.2 KiB

バイナリ
resources/img/youtube.png ノーマルファイル

バイナリファイルは表示されません。

変更後

幅:  |  高さ:  |  サイズ: 5.5 KiB

ファイルの表示

@ -12,6 +12,7 @@ window.axios = require('axios');
window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
Vue.component('appbar', require('./components/appbar.vue').default);
Vue.component('discord', require('./components/discord.vue').default);
const app = new Vue({ el: '#app' });

ファイルの表示

@ -2,7 +2,7 @@
<span>
<a href="#" @click="show = true"><img src="/img/bash/app_icon.png" width="50" /></a>
<span v-if="show">
<vue-draggable-resizable style="border: 0px solid #232629;" :drag-handle="'.drag-handle'" class-name-handle="resize-handle" class="konsoleuser" :x="50" :y="10" :z="99999999">
<vue-draggable-resizable style="border: 0px solid #232629;" :drag-handle="'.drag-handle'" class-name-handle="resize-handle" class="konsoleuser" :x="-50" :y="-100" :z="99999999">
<div style="width: 100%; position: relative;">
<div class="drag-handle-left"></div>
<div class="drag-handle">ロリ端末</div>
@ -83,13 +83,14 @@
}
.drag-handle {
cursor: default;
height: 30px;
background: url('/img/bash/top_bg.png') repeat-x;
width: auto;
margin-left: 30px;
margin-right: 74px;
padding-top: 7px;
padding-right: 30px;
padding-left: 32px;
text-align: center;
font-weight: bold;
}

236
resources/js/components/discord.vue ノーマルファイル
ファイルの表示

@ -0,0 +1,236 @@
<template>
<span>
<a href="#" @click="show = true"><img src="/img/discord.png" /></a>
<span v-if="show">
<vue-draggable-resizable style="border: 0px solid #232629;" :drag-handle="'.drag-handle'" class-name-handle="resize-handle" class="disco" :x="-500" :y="10" :z="99999999">
<div style="width: 100%; position: relative;">
<div class="drag-handle-left"></div>
<div class="drag-handle">ディスコードハンドル</div>
<div class="drag-handle-right" @click="show = false"></div>
</div>
<div class="konsole_left"></div>
<div style="text-align: center; font-size: 18px; padding-top: 10px;">テクニカル諏訪子#3116</div>
<div style="text-align:right; line-height: 15; padding: 10px;"><button type="button" class="btn btn-popup" @click="show = false">OK</button></div>
<div class="konsole_right"></div>
<div class="konsole_bottom_left"></div>
<div class="konsole_bottom"></div>
<div class="konsole_bottom_right"></div>
</vue-draggable-resizable>
</span>
</span>
</template>
<script>
import VueDraggableResizable from 'vue-draggable-resizable';
import 'vue-draggable-resizable/dist/VueDraggableResizable.css';
Vue.component('vue-draggable-resizable', VueDraggableResizable);
export default {
data: function () {
return {
show: false,
text: (localStorage.shotanote || 'かいて〜♡'),
width: 0,
height: 0,
x: 0,
y: 0
}
},
watch: { text (x) { localStorage.shotanote = x; } },
methods: {
onResize: function (x, y, width, height) {
this.x = x
this.y = y
this.width = width
this.height = height
},
onDrag: function (x, y) {
this.x = x
this.y = y
}
}
}
</script>
<style scoped>
#dragger {
position: absolute;
z-index: 9;
}
#draggerheader {
cursor: move;
z-index: 10;
}
.konsole {
width: 600px;
height: 358px;
margin: auto;
color: #fcfcfc;
}
::-webkit-scrollbar-thumb:hover {
background: #452886;
}
.drag-handle-left {
height: 30px;
width: 30px;
background: url('/img/bash/discord_top_left.png') no-repeat;
position: absolute;
top: 0;
left: 0;
}
.drag-handle {
cursor: default;
height: 30px;
background: url('/img/bash/top_bg.png') repeat-x;
width: auto;
margin-left: 30px;
margin-right: 28px;
padding-top: 7px;
padding-right: 0px;
text-align: center;
font-weight: bold;
}
.drag-handle-right {
height: 30px;
width: 28px;
background: url('/img/bash/top_right.png') no-repeat;
position: absolute;
top: 0;
right: 0;
}
.drag-handle-right:hover {
background: url('/img/bash/top_right_hover.png') no-repeat;
cursor: default;
}
.drag-handle-max {
height: 30px;
width: 23px;
background: url('/img/bash/top_max.png') no-repeat;
position: absolute;
top: 0;
right: 28px;
}
.drag-handle-max:hover {
background: url('/img/bash/top_max_hover.png') no-repeat;
cursor: default;
}
.drag-handle-min {
height: 30px;
width: 23px;
background: url('/img/bash/top_min.png') no-repeat;
position: absolute;
top: 0;
right: 51px;
}
.drag-handle-min:hover {
background: url('/img/bash/top_min_hover.png') no-repeat;
cursor: default;
}
.konsole_left {
width: 2px;
background: url('/img/bash/left_bg.png') repeat-y;
position: absolute;
top: 30px;
left: 0;
height: 167px;
}
.konsole_right {
width: 2px;
background: url('/img/bash/right_bg.png') repeat-y;
position: absolute;
height: 167px;
top: 30px;
right: 0;
}
.disco { background-color: #252a35; }
.noter, .noter:active, .noter:focus {
background: transparent;
border: 0;
min-height: 360px;
width: 290px;
resize: none;
}
.btn {
width: 100px;
border: 1px solid #4d4d4d;
}
.btn:hover {
cursor: default;
border: 1px solid #3daee9;
}
.btn-popup {
color: #fcfcfc;
background-color: #252a35;
}
.vdr {
background-size: cover;
backdrop-filter: blur(17px);
font-family: "Lucida Console", Monospace, "DejaVu Sans Mono", "Courier New", MiscFixed;
font-size: 12px;
/* white-space: pre; */
color: #fcfcfc;
overflow: hidden;
position: absolute;
top: 30px;
left: 2px;
height: 200px !important;
width: 500px !important;
padding: 0;
}
.resize-handle-mr {
width: 2px;
background: url('/img/bash/right_bg.png') repeat-y;
position: absolute;
height: 325px;
top: 30px;
right: 0;
}
.konsole_bottom_left {
width: 3px;
height: 3px;
background: url('/img/bash/bottom_left.png') no-repeat;
position: absolute;
bottom: 0;
left: 0;
}
.konsole_bottom {
height: 2px;
background: url('/img/bash/bottom_bg.png') repeat-x;
position: absolute;
bottom: 0;
left: 2px;
width: 495px;
}
.konsole_bottom_right {
height: 3px;
width: 3px;
background: url('/img/bash/bottom_right.png') no-repeat;
position: absolute;
right: 0;
bottom: 0;
}
</style>

ファイルの表示

@ -2,7 +2,7 @@
<span>
<a href="#" @click="show = true"><img src="/img/bash/note_icon.png" width="50" /></a>
<span v-if="show">
<vue-draggable-resizable style="border: 0px solid #232629;" :drag-handle="'.drag-handle'" class-name-handle="resize-handle" class="shotanote" :x="50" :y="10" :z="99999999">
<vue-draggable-resizable style="border: 0px solid #232629;" :drag-handle="'.drag-handle'" class-name-handle="resize-handle" class="shotanote" :x="50" :y="-100" :z="99999999">
<div style="width: 100%; position: relative;">
<div class="drag-handle-left"></div>
<div class="drag-handle">ショタノート</div>
@ -101,13 +101,14 @@
}
.drag-handle {
cursor: default;
height: 30px;
background: url('/img/bash/top_bg.png') repeat-x;
width: auto;
margin-left: 30px;
margin-right: 74px;
padding-top: 7px;
padding-right: 30px;
padding-left: 26px;
text-align: center;
font-weight: bold;
}

ファイルの表示

@ -238,7 +238,7 @@
}
@media (max-width : 525px) {
.logo-br { display: none; }
.logo-br, .nomobile { display: none; }
}
.sidemenu {

ファイルの表示

@ -82,13 +82,15 @@
<img class="img-fluid logo-img" src="/img/header.png" />
<div class="logo-c">テクニカル諏訪子</div>
<div class="logo-br">
<div class="logo-sns"><a href="https://www.youtube.com/user/UltimatePisman" alt="ユーチューブ"><img src="/img/youtube.png" alt="ユーチューブのロゴ" /></a></div>
<div class="logo-sns"><a href="https://www.nicovideo.jp/user/14848316" alt="ニコニコ動画"><img src="/img/niconico.png" alt="ニコニコ動画のロゴ" /></a></div>
<div class="logo-sns"><a href="https://www.bitchute.com/channel/technicalsuwako" alt="ビットチュート"><img src="/img/bitchute.png" alt="ビットチュートのロゴ" /></a></div>
<div class="logo-sns"><a href="https://www.twitter.com/TechnicalSuwako" alt="ツイッター"><img src="/img/twitter.png" alt="ツイッターのロゴ" /></a></div>
<div class="logo-sns"><a href="テクニカル諏訪子#3116" alt="ディスコード"><img src="/img/discord.png" alt="ディスコードのロゴ" /></a></div>
<div class="logo-sns"><discord /></div>
</div>
</div>
</div>
<div class="row">
<div class="row nomobile">
<div class="col-md" style="padding-bottom: 32px;">
<div class="within">
<appbar />