图像离开屏幕然后重新打开的动画



我有一个 png 标志文件,我想对它进行动画处理,移动到右侧,离开屏幕,然后从左侧回到屏幕上。css 中是否有适用于此特定目的的内容?还是我必须在设计上发挥创意?

我使用关键帧动画将图像从左向右移动,这样我就可以更多地了解动画在 css 中的工作原理,但我仍在苦苦挣扎。

<head>
    <link rel="stylesheet" href="Ufatrue.css">
    <title>Bashkorostan</title>
</head> 
  <body bgcolor="#E1E4E6"> 

      <div id="Top">
      <img src="Top.png" alt="7 Flags" align="middle">
          </div>
        <div id="Title">
    <h>Volga Federal District News</h>
    </div>
#Top {
    position: relative;
    animation: myanimation;
    animation-duration: 8s;
    animation-iteration-count: infinite;
}
@keyframes myanimation {
    0% {left: -300px; top: 0px;}
    25% {left: -300px; top: 0px;}
    50% {left: 300px; top: 0px;}
    75% {right: -300px; top: 0px;}
    100% {right: 300px; top: 0px;}
}

您可以只对 HTML 使用选框标记。

.box{
  width:10em;
  height:10em;
  background:dodgerblue;
}
<marquee behavior="scroll" onmouseover="this.stop()" onmouseout="this.start()" direction="right" scrollamount="50" scrolldelay="1"><div class="box"></div></maruquee>

我不确定我是否完全理解你想要什么。但是看看下面的片段,请在下面的评论部分发表评论,告诉我这是否是你想要的

.wrapper {
  overflow: hidden;
}
#top {
  position: relative;
  animation: myanimation;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in;
  height: 100px;
  width: 100px;
  background: red;
}
@keyframes myanimation {
  0% {
    left: 0;
    transform: translateX(-100%)
  }
  100% {
    left: 100%;
    transform: translateX(100%)
  }
}
<div class="wrapper">
  <div id="top">
  </div>
</div>

这个呢?: https://jsfiddle.net/wwWaldi/tadyh6p9/14/

#Top {
    width: 30px;
    height: 30px;
    background: blue;
    position: relative;
    animation: myanimation;
    animation-duration: 8s;
    animation-iteration-count: infinite;
}
@keyframes myanimation {
    0% { right: 0; }
    25% { right: -120%; }
    85% { visibility: hidden; }
    90% {
        left: -20%;
        visibility: visible;
    }
    100% {
      left: 0;
      }
}

最新更新