i tried to change the direction of the arrow by changing the scr of the image.(我试图通过更改图像的scr来更改箭头的方向。)
"www.bsbbalulstudentilorbucuresteni.ro/index" you can see here the problem.(您可以在这里看到“ www.bsbbalulstudentilorbucuresteni.ro/index”问题。)
<img id="hnav" src="img/down-arrow.svg" class="icon-hnav" onclick="myFunction()">
function myFunction() {
var x = document.getElementById("myDIV");
if (x.style.display === "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
var x = document.getElementById("hnav");
if (x.style.bottom === "5px") {
x.style.bottom = "50px";
} else {
x.style.bottom = "5px";
}
var x = document.getElementById("hnav");
if (x.src === "img/up-arrow.svg") {
x.src = "img/down-arrow.svg";
} else {
x.src = "img/up-arrow.svg";
}
}
ask by VlWWv translate from so
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…