Ticket #2016372 (closed enhancement)

Reporter


sfbugs
Opened: 07/11/08
Last modified: 04/29/10
Status: closed
Type: enhancement
Resolution: duplicate
Duplicate of: #1774847

Owner


Matt Sweeney
Target Release: FUTURE
Priority: P3 (normal)
Summary: Generalized Highlight method
Description:

Based on this thread:
http://tech.groups.yahoo.com/group/ydn-javascript/message/34286

The idea is to have a convenience method for showing areas of focus.

The best axample I know of is in the extjs library, of which this method is demonstrated here in their "Getting Satarted" tutorial:
http://extjs.com/learn/Tutorial:Introduction_to_Ext

It would seem easy enough to tack a <div> on to the innerHTML of a given get("id") and follow it up by passing through an animation object to execute. As suggested in the thread, something like:

YAHOO.util.pulse("demo", anim);

And the guts, something like:

  1. demo {
height: 300px;
width: 300px;
position: relative;
}
  1. inner {

position: absolute;
height: 300px;
width: 300px;
top: 0;
left: 0;
background-color: red;
z-index: 0;
}

var anim = new YAHOO.util.Anim('inner', {
to: {
opacity: 0
}

});
anim.animate();

Type: enhancement Observed in Version: None
Component: Animation Severity: S3 (normal)
Assigned To: Matt Sweeney Target Release: FUTURE
Location: Priority: P3 (normal)
Tags: Relates To:
Browsers: N/A
URL:
Test Information:

Change History

George

YUI Developer

Posted: 08/26/08

Forwarding to component owner for consideration.

George

YUI Developer

Posted: 10/21/08
  • summary changed from Generalized Highlight method to [#2297696] Generalized Highlight method

sfbugs

Posted: 01/7/09

This ticket was imported from Source Forge.

Orginially submitted by: optiondelete

George

YUI Developer

Posted: 02/6/09
  • browser changed to
  • location changed to
  • testinfomation changed to

adding comment from bugzilla bug 2297696 for reference:

This will be added as a canned effect.

Matt Sweeney

YUI Developer

Posted: 03/5/09
  • milestone changed from 3.0.0 Beta1 to FUTURE
  • status changed from assigned to accepted

Matt Sweeney

YUI Developer

Posted: 04/29/10
  • browser changed to N/A
  • duplicate changed to 1774847
  • resolution changed from None to duplicate
  • status changed from accepted to closed

This ticket was marked as a duplicate of #1774847