Using JQuery to set CSS Keyframe

前端 未结 2 562
攒了一身酷
攒了一身酷 2020-12-15 10:06

I\'m trying to determine the height of a div which is dynamic depending on the size of the text. I was trying to set this dynamically within the CSS as my origi

2条回答
  •  长情又很酷
    2020-12-15 10:32

    The SyntaxError is being caused by your semicolon-delimited javascript objects here:

    '0%':   {top:$("#test").innerHeight()*-1; left:0px},
    '50%':  {top:100%;  left:0px},
    '100%': {top:$("#test").innerHeight()*-1; left:0px}
    

    Replace your semicolons with commas inside the objects:

    '0%':   {top:$("#test").innerHeight()*-1, left:0},
    '50%':  {top:"100%",  left:0},
    '100%': {top:$("#test").innerHeight()*-1, left:0}
    

    That will fix the syntax error.

    EDIT: In addition, your values for left need to be changed from 0px to 0 or "0px", as 0px by itself is not valid syntax.

    EDIT 2: I played around a bit with this http://jsfiddle.net/7P9yY/2/ and got it to work close to what I believe you're asking.

    The keyframe is defined as:

    $.keyframe.define([{
        name: 'myfirst',
        '0%':   {top:"0px"},
        '50%': {top:$("#testcontainer").innerHeight() + "px"},
        '100%': {top:"0px"}
    }]);
    

    This keyframe defines a motion starting at the top of the page (you can change this to be the top of the div if you need), down to the bottom, and back up to the top. Fire the animation with:

    $("#test").playKeyframe({
        name: 'myfirst',
        duration: 2000
    });
    

    HTML (example):

    hello

    CSS (example):

    #test {
        position: absolute;
    }
    
    #testcontainer {
        position: relative;
        background: pink;
        width: 300px;
        height: 300px;
    }
    

    Hopefully that helps a little bit.

提交回复
热议问题