to

to

This attribute indicates the final value of the attribute that will be modified during the animation. The value of the attribute will change between the from attribute value and this value- By default the change will be linear-

When this attribute is used with the <set> element, it specifies the value for the attribute during the duration of the <set> element.

Usage context

Categories Animation value attribute
Value <value>
Animatable No
Normative document SVG 1.1 (2nd Edition)
SVG 1.1 (2nd Edition) : The set element

The exact value type for this attribute depend on the value of the attribute that will be animated.

Example

This example uses a value of 150 for the to attribute, so the shape will animate to a height of 150.

<?xml version="1.0"?>
<svg width="200" height="200"
  viewPort="0 0 200 200" version="1.1"
  xmlns="http://www.w3.org/2000/svg">
    
  <rect x="10" y="10" width="100" height="100">
    <animate attributeType="XML"
      attributeName="height"
      from="100" to="150"
      dur="3s"
      fill="freeze"/>
  </rect>
    
</svg>

Elements

The following elements can use the to attribute

© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/to

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部