litt react og funksjoner på slutten av dagen
This commit is contained in:
parent
3be1baf5d6
commit
fe625a2b6d
|
@ -1,42 +1,39 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Document</title>
|
<title>CRUD MVC</title>
|
||||||
|
<style>
|
||||||
|
.box {
|
||||||
|
height: 3cqh;
|
||||||
|
}
|
||||||
|
.color{
|
||||||
|
border: 1px solid grey;
|
||||||
|
border-radius: 15px;
|
||||||
|
margin: 10px;
|
||||||
|
width: 200px;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
.topBox {
|
||||||
|
padding: 4px 20px;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
background-color: #484848;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<div id="app">
|
<div id="app">
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script>
|
<script src="farger.js">
|
||||||
// modell
|
|
||||||
let colors = ['red','green','blue','yellow', 'grey']
|
|
||||||
|
|
||||||
// view
|
|
||||||
function updateView() {
|
|
||||||
for (let color of colors) {
|
|
||||||
colorsHtml = /*HTML*/ `
|
|
||||||
<div class="color">
|
|
||||||
<div class="topBox">
|
|
||||||
${createColors}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
`;
|
|
||||||
}
|
|
||||||
document.getElementById('app').innerHTML = /*HTML*/ `
|
|
||||||
<div class="colors>"></div>
|
|
||||||
`;
|
|
||||||
}
|
|
||||||
|
|
||||||
function createColorsHtml(){
|
|
||||||
let colorsHtml = '';
|
|
||||||
for(let color of colors ){
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
|
@ -34,9 +34,9 @@ function addColor() {
|
||||||
addColorName = '';
|
addColorName = '';
|
||||||
updateView();
|
updateView();
|
||||||
}
|
}
|
||||||
function createColorHtml() {
|
function createColorsHtml() {
|
||||||
let colorsHtml = '';
|
let colorsHtml = '';
|
||||||
for (let i = 0; i < colors.lenght; i++) {
|
for (let i = 0; i < colors.length; i++) {
|
||||||
let color = colors[i];
|
let color = colors[i];
|
||||||
colorsHtml += /*HTML*/ `
|
colorsHtml += /*HTML*/ `
|
||||||
<div class="color">
|
<div class="color">
|
||||||
|
|
Loading…
Reference in a new issue