[Bug 5082] Should animate update cursor & status bar?

http://www.w3.org/Bugs/Public/show_bug.cgi?id=5082

           Summary: Should animate update cursor & status bar?
           Product: SVG
           Version: SVG 1.1 Full
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Interactivity
        AssignedTo: schepers@w3.org
        ReportedBy: j.chetwynd@btinternet.com
         QAContact: www-svg@w3.org


1. place cursor in path of any animated link
2. whether declarative or client-side script

cursor should change (to hand) and status bar update destination as animated
element passes under cursor.

cheers doug, couldn't resist trying this out...

<?xml version="1.0" standalone="no"?>
<svg width="100%" height="100%" viewBox="0 0 100 150"
 xmlns:xlink="http://www.w3.org/1999/xlink"
 xmlns="http://www.w3.org/2000/svg">

<a xlink:href="http://www.peepo.co.uk">
<circle cx="25" cy="30" r="10" fill="blue" >
<animate attributeName="cx" begin="0s" dur="16s"
 from="25" to="150" repeatCount="indefinite" />
</circle>
</a>

</svg>

Received on Wednesday, 26 September 2007 16:11:34 UTC