-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
820 lines (742 loc) · 20.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<link rel="shortcut icon" href="./image/ico.png" type="image/x-icon">
<title>炉石卡牌DIY</title>
<style>
* {
margin: 0;
padding: 0;
vertical-align: middle;
outline: none;
}
html,
body,
#app {
width: 100%;
height: 100%;
overflow-y: hidden;
}
body {
background: url("./image/bg.png") no-repeat;
background-size: 100% 100%;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
@font-face {
font-family: "Belwebt";
src: url("./font/Belwe Bt.ttf");
}
@font-face {
font-family: "文鼎中隶";
src: url("./font/文鼎中隶.ttf");
}
.info {
position: absolute;
width: calc(100% - 500px);
min-width: 375px;
background-color: #fff;
border-radius: 10px;
}
.info_wrap {
height: calc(100% - 30px);
padding: 15px 5%;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.input_name {
text-align: center;
}
.title {
text-align: center;
}
label {
font-size: 16px;
font-family: "文鼎中隶";
}
input[type="text"],
select {
height: 30px;
border-radius: 3px;
border: 1px solid #E2C89C;
}
select {
min-width: 75px;
margin-right: 3%;
}
.title_img,
.num_img {
width: 30px;
height: 30px;
}
.num_input {
width: 30px;
text-align: center;
}
textarea {
width: calc(100% - 22px);
margin: 5px 0;
padding: 10px;
border-radius: 3px;
border: 1px solid #E2C89C;
}
.tip {
line-height: 20px;
font-size: 12px;
}
b,
i {
vertical-align: 0px;
}
.file {
position: relative;
line-height: 30px;
}
.flie_wrap {
position: absolute;
display: inline-block;
}
#fileName {
padding: 0 10px;
border-radius: 0;
text-overflow: ellipsis;
box-sizing: border-box;
}
.fake_btn {
height: 30px;
padding: 0 10px;
color: #fff;
background-color: #E2C89C;
border: none;
}
.file_btn {
opacity: 0;
cursor: pointer;
}
.btn {
width: 20%;
height: 30px;
margin: 0 auto;
color: #fff;
background-color: #E2C89C;
border-radius: 3px;
border: none;
}
.card {
position: absolute;
width: 300px;
height: 435px;
background-size: cover;
}
.card_img {
position: absolute;
width: 300px;
top: 20px;
z-index: 1;
pointer-events: none;
}
.card_hero {
top: 0;
}
.clan {
position: absolute;
top: 34px;
left: 15px;
width: 60px;
z-index: 2;
}
.num {
position: absolute;
width: 100px;
color: #fff;
font-size: 68px;
font-family: "Belwebt";
text-align: center;
text-shadow: -1px -1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, 1px 1px 0 #000;
-webkit-text-stroke-width: 2px;
-webkit-text-stroke-color: #000;
z-index: 2;
}
.mana {
top: 15px;
left: 0;
}
.attack {
top: 337px;
left: 0;
}
.health {
top: 337px;
left: 215px;
}
.mana_weapon {
left: -6px;
}
.mana_hero {
top: 30px;
}
.health_hero {
top: 350px;
}
.dragon {
position: absolute;
width: 219px;
z-index: 3;
pointer-events: none;
}
.minion_dragon {
top: 1px;
left: 79px;
}
.spell_dragon {
width: 226px;
top: -5px;
left: 90px;
}
.weapon_dragon {
top: -11px;
left: 76px;
}
.oval {
position: absolute;
overflow: hidden;
}
.oval_minion {
top: 31px;
left: 76px;
width: 160px;
height: 222px;
border-radius: 50%;
}
.oval_spell {
top: 61px;
left: 51px;
width: 205px;
height: 157px;
}
.oval_weapon {
top: 52px;
left: 65px;
width: 180px;
height: 180px;
border-radius: 50%;
}
.oval_hero {
top: 59px;
left: 82px;
width: 147px;
height: 167px;
}
#pic {
position: absolute;
/* width: 100%; */
height: 100%;
left: 50%;
transform: translateX(-50%);
/* object-fit: cover; */
background-position: center;
}
.border {
position: absolute;
z-index: 3;
}
.minion_border {
width: 48px;
top: 250px;
left: 141px;
}
.spell_border {
width: 54px;
top: 246px;
left: 127px;
}
.weapon_border {
width: 45px;
top: 251px;
left: 132px;
}
.crystal {
position: absolute;
width: 20px;
z-index: 3;
}
.minion_crystal {
top: 252px;
left: 151px;
}
.spell_crystal {
top: 255px;
left: 144px;
}
.weapon_crystal {
top: 251px;
left: 145px;
}
.content {
position: absolute;
width: 180px;
height: 85px;
top: 285px;
left: 65px;
font-weight: 500;
text-align: center;
word-wrap: break-word;
display: flex;
flex-direction: column;
justify-content: center;
z-index: 4;
}
.content_weapon {
color: #fff;
}
.content_hero {
top: 297px;
}
.version {
position: absolute;
width: 110px;
top: 283px;
left: 104px;
z-index: 2;
}
.version_hero {
top: 297px;
}
.race {
position: absolute;
width: 140px;
height: 30px;
line-height: 39px;
top: 367px;
left: 88px;
background: url("./image/race.png");
background-size: cover;
color: #fff;
font-size: 16px;
font-family: "文鼎中隶";
text-align: center;
text-shadow: -1px -1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, 1px 1px 0 #000;
z-index: 3;
}
.select_wrap {
position: relative;
width: 10%;
min-width: 75px;
height: 30px;
margin-right: 3%;
display: inline-block;
}
.input_race {
position: absolute;
top: 0;
left: 0;
width: 80%;
height: 28px !important;
margin: 1px 0 1px 1px;
border: none !important;
text-align: center;
}
.select_race {
position: absolute;
top: 0;
left: 0;
width: 100%;
}
#mySvg {
position: absolute;
z-index: 3;
pointer-events: none;
}
textarea {
resize: none;
}
#bar {
position: absolute;
width: 200px;
height: 4px;
top: calc(50% + 230px);
background-color: #E2C89C;
border-radius: 2px;
}
#slider {
position: absolute;
top: -15px;
left: -10px;
width: 20px;
height: 37px;
background-image: url("./image/slider.png");
cursor: pointer;
}
@media screen and (min-width:768px) {
.card {
margin-left: 50px;
margin-top: 75px;
}
.info {
height: 80%;
left: 410px;
top: 10%;
}
.num_wrap {
margin-right: 3%;
display: inline-block;
}
.input_name {
width: 25%;
margin-right: 3%;
}
#bar {
margin-left: 105px;
}
}
@media screen and (max-width:768px) {
.card {
top: 50%;
margin-top: -217px;
margin-left: calc(50% - 150px);
}
.info {
height: 100%;
left: 100%;
top: 0;
}
section {
line-height: 35px;
}
.input_name {
width: calc(100% - 65px);
}
#bar {
left: calc(50% - 100px);
}
}
[v-cloak] {
display: none;
}
</style>
</head>
<body>
<div id="app">
<div class="info">
<div class="info_wrap">
<section class="title">
<img src="./image/ico.png" class="title_img">
<span>炉石卡牌DIY</span>
</section>
<section>
<label for="type">类型:</label>
<select v-model="type">
<option value="minion">随从牌</option>
<option value="spell">法术牌</option>
<option value="weapon">武器牌</option>
<option value="hero">英雄牌</option>
</select>
<label for="job">职业:</label>
<select v-model="job">
<option value="zl">中立</option>
<option value="dly">德鲁伊</option>
<option value="lr">猎人</option>
<option value="fs">法师</option>
<option value="qs">骑士</option>
<option value="ms">牧师</option>
<option value="dz">盗贼</option>
<option value="sm">萨满</option>
<option value="ss">术士</option>
<option value="zs">战士</option>
<option value="sq">死骑</option>
<option value="ws">武僧</option>
</select>
<label for="rare">品质:</label>
<select v-model="rare" :disabled="type=='hero'">
<option value="none">无</option>
<option value="common">普通</option>
<option value="rare">稀有</option>
<option value="epic">史诗</option>
<option value="legendary">传说</option>
</select>
<label for="version">版本:</label>
<select v-model="version" :disabled="type=='weapon'">
<option value="none">无</option>
<option value="base">经典</option>
<option value="naxx">纳克萨玛斯的诅咒</option>
<option value="gvg">地精大战侏儒</option>
<option value="brm">黑石山的火焰</option>
<option value="tgt">冠军的试炼</option>
<option value="loe">探险者协会</option>
<option value="wog">上古之神的低语</option>
<option value="onk">卡拉赞之夜</option>
<option value="msg">龙争虎斗加基森</option>
<option value="jug">勇闯安戈洛</option>
<option value="kft">冰封王座的骑士</option>
<option value="knc">狗头人与地下世界</option>
<option value="tww">女巫森林</option>
<option value="tbp">砰砰计划</option>
<option value="rst">拉斯塔哈的大乱斗</option>
<option value="ros">暗影崛起</option>
</select>
</section>
<section>
<div class="num_wrap">
<img src="./image/mana.png" class="num_img">
<label for="mana">法力值</label>
<input type="text" class="num_input" v-model="mana" />
</div>
<div class="num_wrap">
<img src="./image/attack.png" class="num_img">
<label for="attack">攻击值</label>
<input type="text" class="num_input" v-model="attack" :disabled="type=='spell'||type=='hero'" />
</div>
<div class="num_wrap">
<img src="./image/health.png" class="num_img">
<label for="health">生命值</label>
<input type="text" class="num_input" v-model="health" :disabled="type=='spell'" />
</div>
</section>
<section>
<label for="name">卡牌名:</label>
<input type="text" class="input_name" v-model="name" />
<label for="race">种族:</label>
<div class="select_wrap">
<select class="select_race" ref="race" @change="setRace">
<option value="none">无</option>
<option value="long">龙</option>
<option value="ysh">野兽</option>
<option value="yr">鱼人</option>
<option value="hd">海盗</option>
<option value="em">恶魔</option>
<option value="tt">图腾</option>
<option value="ys">元素</option>
<option value="jx">机械</option>
<option value="all">全部</option>
</select>
<input type="text" class="input_race" v-model="race" :disabled="type!=='minion'" />
</div>
<label for="clan" v-show="version==='msg'">家族:</label>
<select v-model="clan" v-show="version==='msg'">
<option value="none">无</option>
<option value="ajj">暗金教</option>
<option value="wsd">污手党</option>
<option value="ylb">玉莲帮</option>
</select>
</section>
<section>
<label for="content">卡牌描述:</label>
<textarea rows="4" cols="20" v-model="content"></textarea>
<p class="tip">*特殊字样请用HTML标签包裹,如<b><b>粗体</b></b>,<i><i>斜体</i></i>,<p>强制换行</p></p>
</section>
<section class="file">
<label for="file">图片:</label>
<div class="flie_wrap">
<input type="text" id="fileName" value="未选择任何文件">
<button class="fake_btn">上传</button>
</div>
<input type="file" id="file_btn" class="file_btn" accept="image/jpg,image/jpeg,image/png" @change="upload">
</section>
<button class="btn" @click="save">保存</button>
</div>
</div>
<div class="card" v-cloak>
<img class="card_img" :class="{'card_hero':type==='hero'}" :src="'./image/'+type+'_'+job+'.png'" />
<img class="clan" :src="'./image/'+clan+'.png'" v-if="version==='msg'&&clan!=='none'">
<div class="num mana" :class="{'mana_weapon':type==='weapon','mana_hero':type==='hero'}">{{mana}}</div>
<div class="num attack" v-if="type==='minion'||type==='weapon'">{{attack}}</div>
<div class="num health" :class="{'health_hero':type==='hero'}" v-if="type!=='spell'">{{health}}</div>
<div class="oval" :class="oval" @mousedown="startPic($event)" @touchstart="startPic($event)" @mousemove="movePic" @touchmove.prevent="movePic"
@mouseup="endPic" @touchend="endPic" @mouseleave="endPic">
<img id="pic" :src="src" draggable="false"/>
</div>
<img class="dragon"
:class="{'minion_dragon':type==='minion','spell_dragon':type==='spell','weapon_dragon':type==='weapon'}"
:src="'./image/'+type+'_dragon.png'" v-if="rare=='legendary'&&type!=='hero'" draggable="false"/>
<img class="border"
:class="{'minion_border':type==='minion','spell_border':type==='spell','weapon_border':type==='weapon'}"
:src="'./image/'+type+'_border.png'" v-if="rare!=='none'&&type!=='hero'" />
<img class="crystal"
:class="{'minion_crystal':type==='minion','spell_crystal':type==='spell','weapon_crystal':type==='weapon'}"
:src="'./image/'+rare+'.png'" v-if="rare!=='none'&&type!=='hero'" />
<div class="content" :class="{'content_weapon':type==='weapon','content_hero':type==='hero'}" v-html="content">
{{content}}</div>
<img class="version" :src="'./image/'+version+'.png'" :class="{'version_hero':type==='hero'}"
v-if="type!=='weapon'&&version!=='none'" />
<div class="race" v-if="type=='minion'&&race&&race!=='无'">{{race}}</div>
<svg id="mySvg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="300"
height="400" viewBox="0 0 400 543">
<defs>
<path id="myPath" :d="path" fill="none"></path>
</defs>
<text font-size="30" font-family="文鼎中隶" text-anchor="middle">
<textPath xlink:href="#myPath" fill="white" startOffset="50%">
{{name}}
</textPath>
</text>
</svg>
</div>
<div id="bar" v-show="!finish">
<div id="slider" @mousedown="start($event)" @touchstart="start($event)" @mousemove="move" @touchmove.prevent="move"
@mouseup="end" @touchend="end" @mouseleave="end"></div>
</div>
<!-- <canvas id="myCanvas" width="300" height="400">
您的浏览器不支持Canvas
</canvas> -->
</div>
<script src="vue.min.js"></script>
<script>
var oldX, oldY;
new Vue({
el: "#app",
data() {
return {
type: "minion",
job: "zl",
mana: 7,
attack: 7,
health: 7,
src: "./image/demo.jpeg",
name: "砰砰博士",
rare: "legendary",
content: "<b>战吼 :</b>\n<p>召唤两个1/1的砰砰机器</p>\n<p>人。<i>警告 : 该机器</i></p>\n<p><i>人随时可能爆炸。</i></p>",
version: "gvg",
clan: "none",
race: "无",
drag: false,
dragPic: false,
finish: true
}
},
methods: {
setRace() {
let el = this.$refs.race;
let i = el.selectedIndex;
this.race = el.options[i].text;
},
upload(e) {
this.finish = false;
let that = this;
let reads = new FileReader();
let f = document.getElementById("file_btn");
let el = document.getElementById("pic");
el.style.height = 100 + "%";
el.style.top = 0;
el.style.left = 50 + "%";
slider.style.left = -10 + "px";
reads.readAsDataURL(f.files[0]);
reads.onload = function () {
that.src = this.result;
let arr = f.value.split("\\");
document.getElementById("fileName").value = arr[arr.length - 1];
}
},
save() {
this.finish = true;
document.getElementById("pic").style.cursor = "default";
alert("暂不支持");
},
getPosition(e) {
let left = e.offsetLeft;
let top = e.offsetTop;
current = e.offsetParent;
while (current != null) {
left += current.offsetLeft;
top += current.offsetTop;
current = current.offsetParent;
}
return {
"left": left,
"top": top
}
},
start(e) {
if (!this.finish) {
e.stopPropagation();
this.drag = true;
}
},
move(e) {
if (this.drag) {
let x;
let el = document.getElementById("pic");
if (!e.touches) {
x = e.clientX;
} else {
x = e.touches[0].pageX;
}
let bar_left = this.getPosition(bar).left + 10;
let slider_left = x - bar_left;
if (slider_left >= 190) {
slider_left = 190;
}
if (slider_left < -10) {
slider_left = -10;
}
slider.style.left = slider_left + "px";
el.style.height = parseInt(slider_left + 10 + 100) + "%";
}
},
end(e) {
this.drag = false;
},
startPic(e) {
if (!this.finish) {
this.dragPic = true;
oldX = e.clientX;
oldY = e.clientY;
document.getElementById("pic").style.cursor = "move";
}
},
movePic(e) {
if (this.dragPic) {
let x, y;
let el = document.getElementById("pic");
if (!e.touches) {
x = e.clientX;
y = e.clientY;
} else {
x = e.touches[0].pageX;
y = e.touches[0].pageY;
}
if (el.offsetLeft + x - oldX > 0) {
el.style.left = el.offsetLeft + x - oldX + "px";
el.style.top = el.offsetTop + y - oldY + "px";
}
oldX = x;
oldY = y;
}
},
endPic(e) {
this.dragPic = false;
}
},
computed: {
oval() {
return "oval_" + this.type;
},
path() {
let path;
switch (this.type) {
case "minion":
path = "m 56,341 c 0,0 3.8284,6.45932 52.003431,0.99221 28.84576,-3.27354 57.87325,-12.4128 107.80271,-18.66988 36.69487,-4.59854 72.68333,-5.86349 97.95307,-1.16154 27.31819,5.0831 43.46829,12.47526 43.46829,12.47526";
break
case "spell":
path = "m 67,334 c 0,0 107.142857,-40 274.999997,-4.71429";
break
case "weapon":
path = "m 69,322 276.285719,0";
break
case "hero":
path = "m 75,363 c 0,0 138.390898,-67.03301 268.195498,-1.01015";
break
}
return path;
}
},
mounted() {
}
})
</script>
</body>
</html>