* prem_2324 wrote:
>I checked the below example with Opera and  found that the for each 
>interval the circle with Discrete reaches end at different time.
>With  values="50;150;250;350;450" dur="10"  i assume that the circle 
>moves from 50-150 in 2.5s seconds  and 150-250 in 2.5s-5 s and 250-
>350 in 5s-7.5 s and 350-450 in 7.5s-10s.
>
>But the SMIL specification says that the duration has to be divided 
>into half for each interval( and that too doesnt happen in Opera).

I do not quite follow you here. If you look at the SMIL specification:
"For discrete animation, with no keyTimes attribute, the duration is
divided into n equal time periods, one per value." You have five values
so you get five time periods of two seconds each. I searched through it
looking for "half" but no instance suggests what you say above.

It is useful by the way to add code like

    <text font-size='20' x='100' y='300' id='x'>0.0</text>
    <script>
    setInterval(function(){
      document.getElementById('x').firstChild.nodeValue =
        document.documentElement.getCurrentTime().toFixed(2);
    }, 100);
    </script>

To examples with timing.
-- 
Björn Höhrmann · mailto:[EMAIL PROTECTED] · http://bjoern.hoehrmann.de
Weinh. Str. 22 · Telefon: +49(0)621/4309674 · http://www.bjoernsworld.de
68309 Mannheim · PGP Pub. KeyID: 0xA4357E78 · http://www.websitedev.de/ 


-----
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
---- 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/svg-developers/

<*> Your email settings:
    Individual Email | Traditional

<*> To change settings online go to:
    http://groups.yahoo.com/group/svg-developers/join
    (Yahoo! ID required)

<*> To change settings via email:
    mailto:[EMAIL PROTECTED] 
    mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 

Reply via email to