Suggest Prototype/jQuery Widgets
I am revamping a website that (now) uses Prototype framework. In the process of revamping, I realized that the site was using about 7-8 JavaScript widgets from various sources. I am removing all JavaScript widgets and replacing them with Prototype based counterparts. Can you suggest tried and tested widgets for following functions:
- Popup Calendar (bound to a textbox)
- Calendar (embedded in a div, scrollable by month, I need to color the cells via code)
- Dropdown Menu (one level vertical drop down menu)
- Slide Show (开发者_Python百科embedded in a div, with prev/next buttons)
- Light Box (slide show but overlay style)
- Modal Box (ok cancel button)
- Scrolling Marquee (horizontal scroll marquee or ticker)
- Tool Tip
If there is one (tried and tested) library that does it all, I'll be happy to use it.
EDIT
I am open to using jQuery as an alternate.
jquery UI contains some http://jqueryui.com/demos/. The other could be made with some lines of jQuery code.
I have had great results with these plugins:
- jQuery UI
- jQuery UI
- superfish
- fancybox
- facebox
tooltip, marquee, etc i'd prefer to code myself.
As for some Prototype-based alternatives:
For modal popups and carousels, check out: http://www.prototype-ui.com/
For calendar popups, I really liked: http://calendarview.org - you can embed this or pop it up.
A lot of other stuff such as drop-down menus I would code myself. Also keep an eye on Scripty2!
I don't think you will find a library that does it all. The JQuery UI stuff is good too, but like you I came from a Prototype background and I found the above solutions just fine for me.
精彩评论