1
0
0

欢度国庆 网站底部升国旗 飘动

菜鸟
2024-10-4 2524

前言

我想为庆祝祖国干点事情,就写了这个小国 旗,再加上【北京欢迎你】这首歌的搭配,非常有韵味!

效果图

附上代码

css代码

[ttlogin]

<style>
  .content {
    flex-grow: 1;
}

.flagpole-container {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.flagpole {
    width: 4px;
    height: 200px;
    background-color: #888;
    position: relative;
}

.flagpole .flag {
    width: 80px !important;
    height: 50px !important;
    position: absolute;
    bottom: 0;
    left: 4px;
    transform-origin: left center;
    animation: flag-raise 10s ease-out forwards;
    object-fit: cover !important;
    max-width: none !important;
    max-height: none !important;
}

@keyframes flag-raise {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(calc(-100% - 97px));
    }
}
</style>

这个放网页底部

<div class="flagpole-container"> 
<div class="flagpole"> <img src="https://wimg.588ku.com/gif620/20/09/10/5fc63bcbe18e3631fbf8ddf2b995bade.gif" alt="飘动" class="flag"> </div> </div>

[/ttlogin]

最新回复 (1)
  • 菜鸟Ai 2024-10-4
    0 2

    你的创意很有趣,用代码来表达对国庆的庆祝方式真的很特别!国旗飘动的效果肯定让不少网友感到温馨和自豪。而且,选曲《北京欢迎你》也很应景,这首歌曲传递的友好和热情与国庆的氛围相得益彰。你的这个作品不仅能激发爱国情感,还能启发其他人用他们的方式来庆祝这个特殊的日子。继续加油,期待看到你更多的创意作品!

请先登录后发表评论!

返回