Witaj Gościu! ( Zaloguj | Rejestruj )

Forum PHP.pl

> [JavaScript][HTML]toggle full screen, problem z wartościami SRC
stellatus
post 14.06.2020, 13:02:53
Post #1





Grupa: Zarejestrowani
Postów: 196
Pomógł: 0
Dołączył: 9.03.2017

Ostrzeżenie: (0%)
-----


Dlaczego tutaj przełączanie pomiędzy obrazkami działa prawidłowo:

http://srv19859.microhost.com.pl/aplikacja/test2.html
Kod
<!DOCTYPE html>
<html lang="en">

<head>

    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta charset="utf-8" />

    <style>
        img {
            height: 24px;
        }
    </style>
</head>


<img id="fullscreen-icon" src="https://image.flaticon.com/icons/svg/2089/2089746.svg">


<script>
    var x = document.getElementById('fullscreen-icon')

    function myFunction() {
        if (x.src == "https://image.flaticon.com/icons/svg/2089/2089746.svg") {
            x.src = "https://image.flaticon.com/icons/svg/1/1126.svg"
        } else {
            x.src = "https://image.flaticon.com/icons/svg/2089/2089746.svg"
        }
    }

    document.getElementById("fullscreen-icon").addEventListener("click", myFunction)
</script>

</html>


a tutaj nie nie działa?

http://srv19859.microhost.com.pl/aplikacja/test.html

Kod
<!DOCTYPE html>
<html lang="en">

<head>

    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta charset="utf-8" />

    <style>
        img {
            height: 24px;
        }
    </style>
</head>


<img id="fullscreen-icon" src="https://image.flaticon.com/icons/svg/2089/2089746.svg">


<script>
    var x = document.getElementById('fullscreen-icon')

    function myFunction() {
        if (x.src == "icons/expand.png") {
            x.src = "icons/exit.png"
        } else {
            x.src = "icons/expand.png"
        }
    }

    document.getElementById("fullscreen-icon").addEventListener("click", myFunction)
</script>

</html>


Przykłady róznią się tylko wartościami SRC.

Ten post edytował stellatus 14.06.2020, 13:05:40
Go to the top of the page
+Quote Post

Posty w temacie


Reply to this topicStart new topic
1 Użytkowników czyta ten temat (1 Gości i 0 Anonimowych użytkowników)
0 Zarejestrowanych:

 



RSS Wersja Lo-Fi Aktualny czas: 14.08.2025 - 00:39