Hey, anyone knows a jQuery plug-in for text zoom a-la MAC OS X "Large Type" function in Address Book? I'd use it for the same situation - to show full-screen phone number after clicking on it.
Cheers
Hey, anyone knows a jQuery plug-in for text zoom a-la MAC OS X "Large Type" function in Address Book? I'd use it for the same situation - to show full-screen phone number after clicking on it.
Cheers
You can use jQuery BlockUI plugin to create this kind of "Large Type" effect. Check samples and use custom css to show ph. numbers.
Try looking for tooltip plugins - they would do well in Your case I think, but...
I suggest DIY
Just write yourself a plugin that does this:
tips: var thething = $('').addClass('mysomething').appendTo('body'); //works nice
.thething{ position: fixed; top: 200px; left: 200px; opacity: 0.8; something something filter something alpha something 80 for IE7 even more something something that You need to google filter something alpha something 80 for IE8 }
and it works ;)
I recently extracted a jQuery plugin out of an application I'm building that does exactly this. http://zoomabletype.tatey.com/