All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object
|
+----org.w3c.css.properties.CssProperty
|
+----org.w3c.css.aural.ACssProperty
|
+----org.w3c.css.aural.ACssCueAfter
Value: <url> | none
Initial: none
Applies to: all elements
Inherited: no
Percentage values: NA
Auditory icons are another way to distinguish semantic elements. Sounds may be played before, and/or after the element to delimit it. The same sound can be used both before and after, using the shorthand 'cue' property.
Examples:
A {cue-before: url(bell.aiff); cue-after: url(dong.wav) }
H1 {cue-before: url(pop.au); cue-after: url(pop.au) }
H1 {cue: url(pop.au) } / * same as previous * /
The :before and :after pseudo-elements (see frostings document) could be used to generate this content, rather than using two special-purpose properties. This would be more general.
public ACssCueAfter()
public ACssCueAfter(ACssCueBefore cueBefore)
public ACssCueAfter(CssExpression value) throws InvalidParamException
public Object get()
public URL getValue() throws IOException
public boolean isSoftlyInherited()
public String toString()
public String getPropertyName()
public void addToStyle(CssStyle style)
public boolean equals(CssProperty property)
public CssProperty getPropertyInStyle(CssStyle style,
boolean resolve)
All Packages Class Hierarchy This Package Previous Next Index