Can someone please explain how to use this in a custom area and one image per table cell?
http://www.ndesign-studio.com/blog/m...menu/#more-215
I posted a comment 2 days ago and apparently it did not go through.
Can someone please explain how to use this in a custom area and one image per table cell?
http://www.ndesign-studio.com/blog/m...menu/#more-215
I posted a comment 2 days ago and apparently it did not go through.
I don't know, but I would like it if someone explained the $ and the : stuff, as I am unfamiliar with that javascript syntax.
Code:<script type="text/javascript"> $(document).ready( function() { $(’#dock2′).Fisheye( { maxWidth: 60, items: ‘a’, itemsText: ’span’, container: ‘.dock-container2′, itemWidth: 40, proximity: 80, alignment : ‘left’, valign: ‘bottom’, halign : ‘center’ } ) } ); </script>
$ is just like any other variable. It can be used to name things. Ii think in Prototype it is a shortcut to document.getElementById().
As for the colon. It allows you to make an object.
object name: object properties.
This can be a function, string etc.
But shouldn't be: ECMA-262 says it should be reserved for machine-generated identifiers.$ is just like any other variable. It can be used to name things.It does other things. It can select an element by ID, name, class, and various other criteria, I believe.Ii think in Prototype it is a shortcut to document.getElementById().No, not a constructor, just a single instance of an object. For example:So if I had an object constructor for lets say ShortStoryCode:var myobj = { 'prop1' : "somevalue", 'prop2' : "someothervalue" }; myobj.prop1; // "somevalue" myobj['prop2']; // "someothervalue"
Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!
(I accidentally made a short post and deleted it)
Ok, I get it after putting it to the test on my machine.
Last edited by Trinithis; 05-22-2007 at 05:44 PM.
Bookmarks