Skip to content

lschnellmann/lschnellmann.github.io

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

lschnellmann.github.io

statue

<style> body { background-color: black; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100vh; margin: 12; background-image: STATUEFORTMFINRWEBPAGE.png; background-position; center; background-repeat; no-repeat; background-size: cover; }
    .block-letters {
        color: white;
        font-size: 72px;
        font-weight: bold;
        text-align: center;
        margin-top: 100px;
    }
    
    #video-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        bottom: 20px;
        left: 20px;
    }
    
    .video-thumbnail {
        width: 200px;
        height: 113px;
        margin-bottom: 20px;
    }
    
    .typing-effect {
        color: lightgreen;
        font-family: Verdana, sans-serif;
        font-weight: bold;
        font-size: 18px;
        text-align: left;
        line-height: 1.5;
        margin-top: 20px;
        width: 4in;
        white-space: pre-wrap;
        overflow-wrap: break-word;
        animation: typing 4s steps(40, end);
    }
    
    @keyframes typing {
        from {
            width: 0;
        }
        to {
            width: 100%;
        }
    }
</style>
#TMFINR
<script>
    const text = `MeidasTouch host Ben Meiselas reports on Special Counsel Jack Smith sending a target letter to a Donald Trump employee for potential charges relating to obstruction of surveillance footage at Mar-A-Lago.`;
    const typingEffect = document.getElementById("typing-effect");
    
    let index = 0;
    const delay = 100; // Delay between each character (in milliseconds)
    
    function typeText() {
        if (index < text.length) {
            typingEffect.innerHTML += text.charAt(index);
            index++;
            setTimeout(typeText, delay);
        }
    }
    
    typeText();
</script>

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published