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
| var utilsCalled = document.getElementById('utilsCalled');
const utilsCat = document.getElementById('utilsCat');
const CatS = document.getElementById('CatS');
const utilsCatD = document.getElementById('utilsCatD');
utilsCat.onmouseover = function () {
utilsCalled.style.display = 'flex';
utilsCatD.style.display = 'flex';
CatS.style.background = 'linear-gradient(45deg, #42f5c2 85%, #1da881 100%)';
CatS.style.textShadow = '2px 2px 2px #231a164D';
utilsCalled.onmouseover = function () {
utilsCalled.style.display = 'flex';
utilsCatD.style.display = 'flex';
CatS.style.background = 'linear-gradient(45deg, #42f5c2 85%, #1da881 100%)';
CatS.style.textShadow = '2px 2px 2px #231a164D';
}
}
utilsCat.onmouseout = function () {
utilsCalled.style.display = 'none';
utilsCatD.style.display = 'none';
CatS.style.background = 'linear-gradient(45deg, #42f5c2 0%, #1da881 96%)';
CatS.style.textShadow = '2px 2px 2px #231a164D';
utilsCalled.onmouseout = function () {
utilsCalled.style.display = 'none';
utilsCatD.style.display = 'none';
CatS.style.background = 'linear-gradient(45deg, #42f5c2 0%, #1da881 96%)';
CatS.style.textShadow = '2px 2px 2px #231a164D';
}
}
var utilsMark = document.getElementById('utilsMark');
var MarkS = document.getElementById('MarkS');
var utilsMarkD = document.getElementById('utilsMarkD');
utilsMark.onmouseover = function () {
utilsCalled.style.display = 'flex';
utilsMarkD.style.display = 'flex';
MarkS.style.background = 'linear-gradient(45deg, #42f5c2 85%, #1da881 100%)';
MarkS.style.textShadow = '2px 2px 2px #231a164D';
utilsCalled.onmouseover = function () {
utilsCalled.style.display = 'flex';
utilsMarkD.style.display = 'flex';
MarkS.style.background = 'linear-gradient(45deg, #42f5c2 85%, #1da881 100%)';
MarkS.style.textShadow = '2px 2px 2px #231a164D';
}
}
utilsMark.onmouseout = function () {
utilsCalled.style.display = 'none';
utilsMarkD.style.display = 'none';
MarkS.style.background = 'linear-gradient(45deg, #42f5c2 0%, #1da881 96%)';
MarkS.style.textShadow = '2px 2px 2px #231a164D';
utilsCalled.onmouseout = function () {
utilsCalled.style.display = 'none';
utilsMarkD.style.display = 'none';
MarkS.style.background = 'linear-gradient(45deg, #42f5c2 0%, #1da881 96%)';
MarkS.style.textShadow = '2px 2px 2px #231a164D';
}
} |
Partager