SVG中的动画技术(2)

http://blog.csdn.net/net_lover/archive/2002/01/25/6889.aspx

下面再看一个沿指定路径运动的例子:

xml 代码
  1. <!---->xml version="1.0" encoding="UTF-8" standalone="no"?>  
  2. <!---->
  3. "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">  
  4. <svg width="500" height="300" viewBox="0 0 500 300"  
  5. xmlns="http://www.w3.org/2000/svg">  
  6. <desc>沿路径运动的例子desc>  
  7. <defs>  
  8. <!---->  
  9. <linearGradient id="grad1" x1="0" y1="0" x2="0" y2="100%" gradientUnits="userSpace">  
  10. <stop offset="0%" style="stop-color: #88f;"/>  
  11. <stop offset="100%" style="stop-color: #008;"/>  
  12. linearGradient>  
  13. defs>  
  14. <rect x="1" y="1" width="498" height="298"  
  15. fill="none" stroke="blue" stroke-width="2" />  
  16.   
  17. <!---->  
  18. <path d="M100,250 C 100,50 400,50 400,250"  
  19. fill="none" stroke="blue" stroke-width="8" />  
  20.   
  21. <!---->  
  22. <circle r="25" style="fill:url(#grad1)">  
  23. <!---->  
  24. <animateMotion dur="6s" repeatCount="indefinite"  
  25. path="M100,250 C 100,50 400,50 400,250" rotate="auto" />  
  26. circle>  
  27. <text x="145" y="285" style="font-size:12pt">http://lucky.myrice.comtext>  
  28. svg>  
  29.   

 上面的例子应用了animateMotion动画元素,其属性设定和前面类似。

你可能感兴趣的:(C++,c,.net,xml,C#)