vote up 3 vote down star
3

Is there a jQuery library or any leads on implementing that photo tagging like in Facebook and Orkut Photo albums?

Thanks

flag

3 Answers

vote up 2 vote down

Hmmm, I found that the new version of Img Notes seems to do exactly what you want.

Checkout the Demo. It allows you to easily add tag notes and show them using JQuery. He also depends on the imgAreaSelect jquery plugin for adding notes.

link|flag
vote up 0 vote down

you could try Jcrop or imgAreaSelect. Not 100% the same behaviour as in Facebook, but with some tweaks, this should e possible.

link|flag
At a single time I may have to show more than one location/areas :( – Saneef Mar 5 at 10:58
In Facebook, you never have more than 1 rectangle shown at any moment. – Natrium Mar 5 at 12:00
In orkut they show all the rectangles initially then fades out. – Saneef Mar 6 at 6:06
So, actually, you want it like in Orkut, and NOT like in Facebook? – Natrium Mar 6 at 7:34
Basic idea behind both are same. – Saneef Mar 7 at 14:23
show 1 more comment
vote up 0 vote down check

I didn't find any suitable plugins for this purpose. So I ended up writing myself a small plug-in to mark areas over an image based on the coordinates loaded through an XML file.

The basic code is required is:

<div id="imageholder">

 <!-- The main image -->
 <img src="<link to image file>" alt="Image">

 <!-- The grid tags -->
 <div class="gridtag" style="bottom: 100px; left: 106px; height: 41px; width: 41px;"/>
 <div class="gridtag" style="bottom: 300px; left: 56px; height: 100px; width: 56px;"/>

 <div class="gridtag" ...

</div>

And the basic CSS styling required:

#imageholder{
 height:500px;
 width:497px;
 position:relative;
}
div.gridtag {
 border:1px solid #F0F0F0;
 display:block;
 position:absolute;
 z-index:3;
}

In the above the divs with class "gridtags" are added using jQuery through XML or JSON and by binding events on this divs, we can make phototagging similar in Orkut.

PS: This only one side of the phototagging, ie. if we already have the coordinates we can mark on an image and add click events, which is the part actually i wanted. :) You guys has to write code for doing the marking part of the phototagging.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.