COLOUUUURURURURU

This commit is contained in:
Kasper Rynning-Tønnesen
2020-01-22 11:21:34 +01:00
parent 1b110e5f5a
commit 187ddc17b0

View File

@@ -5,6 +5,36 @@
</router-link> </router-link>
<h1>Loddgenerator</h1> <h1>Loddgenerator</h1>
<p>Velg hvilke farger du vil ha, fyll inn antall lodd og klikk 'generer'</p> <p>Velg hvilke farger du vil ha, fyll inn antall lodd og klikk 'generer'</p>
<div class="input-line">
<label for="redCheckbox">
<input type="checkbox" id="redCheckbox" v-model="redCheckbox" />
<span class="border">
<span class="checkmark"></span>
</span>
Rød
</label>
<label for="yellowCheckbox">
<input type="checkbox" id="yellowCheckbox" v-model="yellowCheckbox" />
<span class="border">
<span class="checkmark"></span>
</span>
Gul
</label>
<label for="blueCheckbox">
<input type="checkbox" id="blueCheckbox" v-model="blueCheckbox" />
<span class="border">
<span class="checkmark"></span>
</span>
Blå
</label>
<label for="greenCheckbox">
<input type="checkbox" id="greenCheckbox" v-model="greenCheckbox" />
<span class="border">
<span class="checkmark"></span>
</span>
Grønn
</label>
</div>
<div class="input-line"> <div class="input-line">
<input <input
type="number" type="number"
@@ -43,7 +73,11 @@ export default {
red: 0, red: 0,
green: 0, green: 0,
yellow: 0, yellow: 0,
colorTimeout: null colorTimeout: null,
redCheckbox: true,
greenCheckbox: true,
yellowCheckbox: true,
blueCheckbox: true
}; };
}, },
methods: { methods: {
@@ -59,9 +93,27 @@ export default {
this.red = 0; this.red = 0;
this.green = 0; this.green = 0;
this.yellow = 0; this.yellow = 0;
let randomArray = [];
if (this.redCheckbox) {
randomArray.push(1);
}
if (this.greenCheckbox) {
randomArray.push(2);
}
if (this.yellowCheckbox) {
randomArray.push(3);
}
if (this.blueCheckbox) {
randomArray.push(4);
}
if (randomArray.length == 0) {
alert("Du må velge MINST 1 farge..");
return;
}
if (this.numberOfBallots > 0) { if (this.numberOfBallots > 0) {
for (let i = 0; i < this.numberOfBallots; i++) { for (let i = 0; i < this.numberOfBallots; i++) {
let color = Math.floor(Math.random() * 4) + 1; let color =
randomArray[Math.floor(Math.random() * randomArray.length)];
this.colors.push(color); this.colors.push(color);
if (color == 1) { if (color == 1) {
this.red += 1; this.red += 1;
@@ -127,7 +179,7 @@ h1 {
p { p {
text-align: center; text-align: center;
margin-bottom: 35px; margin-bottom: 15px;
margin-top: 0px; margin-top: 0px;
} }
@@ -136,7 +188,15 @@ p {
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
margin-bottom: 15px; margin-bottom: 25px;
}
.input-line label {
padding: 0 8px;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
} }
.top-banner { .top-banner {
@@ -162,6 +222,29 @@ input {
font-size: 1.5rem; font-size: 1.5rem;
padding: 8px; padding: 8px;
} }
input[type="checkbox"] {
display: none;
}
label .border {
border: 1px solid #333333;
border-spacing: 2px;
margin-right: 8px;
display: flex;
justify-content: center;
align-items: center;
padding: 2px;
}
label .checkmark {
background: none;
display: inline-block;
width: 12px;
height: 12px;
padding: 2px;
}
.container { .container {
font-family: Knowit; font-family: Knowit;
margin: auto; margin: auto;
@@ -180,6 +263,11 @@ input {
width: 150px; width: 150px;
height: 150px; height: 150px;
margin: 20px; margin: 20px;
-webkit-mask-image: url(/../../public/assets/images/lodd.svg);
background-repeat: no-repeat;
mask-image: url(/../../public/assets/images/lodd.svg);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
} }
button { button {
@@ -198,19 +286,27 @@ button {
flex-direction: row; flex-direction: row;
justify-content: space-around; justify-content: space-around;
} }
.green { .green,
.input-line label:hover input#greenCheckbox ~ .border .checkmark,
.input-line label input#greenCheckbox:checked ~ .border .checkmark {
background-color: #c8f9df; background-color: #c8f9df;
} }
.red { .red,
.input-line label:hover input#redCheckbox ~ .border .checkmark,
.input-line label input#redCheckbox:checked ~ .border .checkmark {
background-color: #fbd7de; background-color: #fbd7de;
} }
.yellow { .yellow,
.input-line label:hover input#yellowCheckbox ~ .border .checkmark,
.input-line label input#yellowCheckbox:checked ~ .border .checkmark {
background-color: #fff6d6; background-color: #fff6d6;
} }
.blue { .blue,
.input-line label:hover input#blueCheckbox ~ .border .checkmark,
.input-line label input#blueCheckbox:checked ~ .border .checkmark {
background-color: #d4f2fe; background-color: #d4f2fe;
} }