"name" |
name of the icon to display |
|
class |
additional css class for the img tag |
|
animate |
can be one of bounce, burst, flash, float, horizontal, passing, pulse, ring, shake, spin, tada, vertical, wrench |
alt |
alt attribute |
|
title |
title attribute |
|
style |
css style format to be added to the image element |
|
format |
format string used to render the icon; known variables to be used in the format string are: -
$iconName: name as given to the name parameter -
$iconPath: url path -
$iconClass: css class as specified by the class parameter -
$iconStyle: css styles as specified by the style parameter -
$iconAlt: alt attribute-value; if the alt parameter to JQICON is set, this expands to alt='...' -
$iconTitle: title attribute-value; if the title parameter to JQICON is set, this expands to title='...' |
for image icons: <img src='$iconPath' class='$iconClass $iconName' $iconStyle $iconAlt$iconTitle/>; for font icons: <i class='$iconClass' $iconStyle $iconTitle></i> |