Forum Moderators: open
Widgets...
it means that when you click on it you'll get:
Widgets
Blue Widgets
Green Widgets
Yellow Widgets
It seems that in the past year or two it's becoming popular to use a triangular "switch" symbol to indicate this sort of thing: pointing right to indicate "more" and then pointing down when the link is followed and the submenus are displayed.
So, should I change my ... to triangles? Does everyone recognize what they mean?
If so, how best to implement them? I see there are a couple of Unicode characters that would work if they are available via all browsers: 9655 and 9661
I don't know if they'll display here:
▷ ▽
(Note: I'm only talking about the appearance of the interface, not how to program submenus.)
Ellipsis (...) used in application menus typically means that clicking on it will bring you to a new page/dialog with additional items. This could even be a modal dialog.
Collapsed/Expanded arrows are used to show/hide additional "child" information or navigation.
I would not really consider them to be interchangeable as you have described it.
So if the triangles are to be used, what's the best device? I don't want to use img files; Unicode characters would seem to be best. Are there other choices I haven't thought of?
Many thanks.
I don't want to use img files;
Why not?
I view this as purely presentational, so I use CSS (background images) to control it. For example, the "parent" object would have a class representing the state of the object (collapsed/expanded). Then you just toggle the class on the parent, and the background image changes.