代码之家  ›  专栏  ›  技术社区  ›  CookieM

使有生气css不工作不知道为什么?

  •  0
  • CookieM  · 技术社区  · 9 年前

    我是HTML和CSS的新手,想让我的试用网站充满活力。虽然当我添加动画时。css到我的文件,它把它搞砸了,没有动画,把我的图片和背景搞砸了。

    这是我的代码:

    h2 {
      font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
      color: aqua;
      position: relative;
      left: 282px;
      text-transform: uppercase;
      font-size: 45px;
      animation-name: animation1;
      animation-duration: 2;
    }
    h1 {
      font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
      color: aqua;
      position: relative;
      left: 250px;
      text-transform: uppercase;
      font-size: 55px;
    }
    img {
      position: relative;
      bottom: 0px;
      left: 425px;
    }
    body {
      background-image: url(cool%20gradient.png);
      background-position: 50% 50%;
      background-repeat: no-repeat;
    }
    a {
      color: hotpink;
      text-transform: uppercase;
      font-size: 30px;
      position: relative;
      left: 165px;
      bottom: -50px;
    }
    <h2 class="animated bounceInRight">Want to see a Pug</h2> 
    <h1 class="animated bounceInLeft">Licking a Screen</h1>
    <img class="animated fadeInDown" src="Down-Arrow1.png" style="width:200px;height:200px;">
    <a class="animated fadeInUp" href="http://www.sanger.dk/">Pug Licking Screen</a> 

    感谢所有的帮助!

    2 回复  |  直到 9 年前
        1
  •  1
  •   RBT    3 年前

    如果您的代码正常但看不到动画效果,此问题用于设置Windows的性能选项

    您应该从CSS文件(animate.CSS)中删除此代码,然后使用键 Ctrl键 + 第5页 要清除浏览器缓存,请参阅刷新的网页

    @media (print), (prefers-reduced-motion: reduce) {
    .animated {
        -webkit-animation-duration: 1ms !important;
        animation-duration: 1ms !important;
        -webkit-transition-duration: 1ms !important;
        transition-duration: 1ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
    }}
    
        2
  •  0
  •   zx485 potemkin    9 年前

    这个 <style> 标记属于 <head> 部分还要确保 animate.min.css 文件存在,并且该文件的路径正确。

    <!DOCTYPE html>
    <html>
    
      <head>
        <style>
        h2 {
            font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
            color: aqua;
            position: relative;
            left: 282px;
            text-transform: uppercase;
            font-size: 45px;
            animation-name: animation1;
            animation-duration: 2;
            }
    
        h1 {
            font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
            color: aqua;
            position: relative;
            left: 250px;
            text-transform: uppercase;
            font-size: 55px;
           }
    
        img {
            position: relative;
            bottom: 0px;
            left: 425px;   
            }
    
        body {
            background-image: url(cool%20gradient.png);
            background-position: 50% 50%;
            background-repeat: no-repeat;
            }   
    
        a {
            color: hotpink;
            text-transform: uppercase;
            font-size: 30px;
            position: relative;
            left: 165px;
            bottom: -50px;
          }   
    
        </style>
        <link rel="stylesheet" href="animate.min.css">     
      </head>  
    
      <body>
       <h2 class="animated bounceInRight">Want to see a Pug</h2> 
       <h1 class="animated bounceInLeft">Licking a Screen</h1>
       <img class="animated fadeInDown" src="Down-Arrow1.png"      style="width:200px;height:200px;">
       <a  class="animated fadeInUp" href="http://www.sanger.dk/">Pug Licking Screen</a>   
      </body>
    </html>