User:তাহমিদ/Sandbox/style.css: Difference between revisions

From TestWiki
Content added Content deleted
No edit summary
Tags: Mobile edit Mobile web edit Advanced mobile edit
No edit summary
Tags: Mobile edit Mobile web edit Advanced mobile edit
Line 16: Line 16:
animation-delay: 4s;
animation-delay: 4s;
animation-iteration-count: infinite;
animation-iteration-count: infinite;
animation-direction: alternate;
}
}

Revision as of 04:34, 21 July 2021

@keyframes myOwnAnimation {
    from {
        bottom: 0;
    }
    to {
        top: 0;
    }
}

.myOwnClass {
    position:fixed;
    bottom:0;
    right: 0;
    animation-name: myOwnAnimation;
    animation-duration: 4s;
    animation-delay: 4s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}