Computer Science, asked by calypsovaldez46, 8 months ago

Animates the space between letters for all paragraphs with default duration of 400 seconds. Which jQuery code accomplishes this task?


Select one:
a. $(".p").animate({letterSpacing:"400"});
b. $("p").animate({letterSpacing:"15px"});
c. $("p").animate({letterSpacing:"400px"});

Answers

Answered by anjalipriyachy
17

Answer: Ans is b

Explanation:

Answered by Sahil3459
0

Answer:

The correct option for this question is b.  ("p").animate({letterSpacing:"15px"});

Explanation:

In a @keyframes rule, timing functions can be provided for specific keyframes. A keyframe's corresponding value of the animation-timing-function from the element to which the animation is applied is used if no animation-timing-function is defined on that keyframe. Animating-timing-function is an at-rule-specific descriptor within a keyframe, not its corresponding attribute. There is no animation in the timing. Instead, a keyframe's timing function is applied to each individual property from the keyframe on which it is specified until the keyframe specifying that property, or until the conclusion of the animation if there isn't a subsequent keyframe specifying that property. An animation-timing-function specified on the 100 percent or to keyframe will never be used as a result.

Custom animations are made using the jQuery animate() method.

Similar questions