
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>

<script>
$(document).ready(function () {

    const elementId = "image-test-upper";
    const storageKey = "imageUpperOpacity";

    // Elmentett opacity betöltése
    let opacity = localStorage.getItem(storageKey);

    if (opacity === null) {
        opacity = 1;
    } else {
        opacity = parseFloat(opacity);
    }

    // Aktuális opacity alkalmazása
    $("#" + elementId).css("opacity", opacity);

    // Halványítás indítása
    const interval = setInterval(function () {

        opacity -= 0.2;

        if (opacity <= 0) {
            opacity = 0;
            clearInterval(interval);
        }

        // Mentés
        localStorage.setItem(storageKey, opacity);

        // Animáció
        $("#" + elementId).fadeTo(1000, opacity);

    }, 2000);

});
</script>
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://venakhete.hu/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://venakhete.hu/wp-sitemap-posts-post-1.xml</loc></sitemap><sitemap><loc>https://venakhete.hu/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://venakhete.hu/wp-sitemap-taxonomies-category-1.xml</loc></sitemap></sitemapindex>
