-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
34 lines (27 loc) · 1.06 KB
/
script.js
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
// Pegando a box laranja que onde será feita a curva
let previewBox = document.querySelector('.cuboParaModelar'),
// Pegando elemento para exibir pixels:
previewNumbers = document.querySelector('[data-exibir-numeros]'),
//Pegando os inputs onde serão passados os valores
inputs = document.querySelectorAll('input'),
// Um array para controlar melhor os cantos dos arrays:
dataBorderRadius={
'topLeft' : 0,
'topRight' : 0,
'BottomLeft' : 0,
'BottomRight' : 0,
}
// Trabalhando em cimda do array:
inputs.forEach(function(input){
input.addEventListener('change', function(){
let border = this.getAttribute('border'),
value = this.value + `px`;
dataBorderRadius[border] = value;
draw();
});
});
function draw() {
let radiusValue = `${dataBorderRadius.topLeft} ${dataBorderRadius.topRight} ${dataBorderRadius.BottomRight} ${dataBorderRadius.BottomLeft} `;
previewBox.style.borderRadius = radiusValue;
previewNumbers.innerHTML = `border-radius: ${radiusValue}`
}