动画不能动是哪里写错了?

动画不能动是哪里写错了?

<!DOCTYPE html>

<html>

<head>

    <meta charset="UTF-8">

    <title>2-9</title>

    <style type="text/css">

        div {

            font-family: Arial;

            font-size: 72px;

            font-weight: bold;

            position: fixed;

            right: 0;

            left: 0;

            width: 30px;

            height: 30px;

            margin: auto;

            transform: rotate(90deg);

            animation-name:vword;

            animation-iteration-count:infinite;

            animation-direction:alternate-reverse;

        }

        @keyframes vword{

            from{translateY(0);        }

            to  {translateY(300px)}

        }

    </style>

</head>

<body>

    <div>></div>

</body>

</html>


正在回答 回答被采纳积分+1

登陆购买课程后可参与讨论,去登陆

3回答
小丸子爱吃菜 2017-08-21 13:54:17

如果要箭头朝下的话, @keyframes vword里面的动画就要改一下,不然里面的transform会覆盖箭头设置的transform:rotate。

小丸子爱吃菜 2017-07-18 09:36:14
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>2-9</title>
    <style type="text/css">
        div {
            font-family: Arial;
            font-size: 72px;
            font-weight: bold;
            position: fixed;
            right: 0;
            left: 0;
            width: 30px;
            height: 30px;
            margin: auto;
            transform: rotate(90deg);
            animation-name:vword;
            animation-iteration-count:infinite;
            animation-direction:alternate-reverse;
            animation-duration: 4s;
        }
        @keyframes vword{
            from{transform:translateY(0);        }
            to  {transform:translateY(300px)}
        }
    </style>
</head>
<body>
    <div>></div>
</body>
</html>

@keyframes 中的代码也需要改一下,没有写transform

  • 老师你好,我刚才试了一下你这个代码,箭头的方向不对吧,应该是向下的,晚上我尝试了很多次,要不就是改变箭头的方向,要不就是向下位移,这个怎么解决呢?然后我尝试了这个方法transform:rotate() translateY();可是还是不行
    2017-08-20 23:11:46
小丸子爱吃菜 2017-07-17 15:37:17

animation-duration: 4s;加上动画完成的时间就可以了。

祝学习愉快!

  • 提问者 锅里的芒果 #1
    还是不行的,老师
    2017-07-18 07:34:35
问题已解决,确定采纳
还有疑问,暂不采纳

恭喜解决一个难题,获得1积分~

来为老师/同学的回答评分吧

0 星
HTML5与CSS3实现动态网页 2018
  • 参与学习       1887    人
  • 提交作业       4643    份
  • 解答问题       5760    个

有HTML和CSS基础,却不知道如何进阶?本路径带你通过系统学习,完成从“会做网页”到“做出好的动态网页”的蜕变,迈出成为前端工程师的第一步。

了解课程
请稍等 ...
意见反馈 帮助中心 APP下载
官方微信

在线咨询

领取优惠

免费试听

领取大纲

扫描二维码,添加
你的专属老师