Hi,
As a jquery noob i am stuck trying to make my tooltip move to the left/right.
See it in action here:http://www.huwsplace.co.uk/test/index.html
i want that same effect but to move to the left on hover, then back to the right when you move the mouse away.
I have played around with the script to no luck!
Please can someone help me with this?!
i have tried this script:
But, i am getting strange effects happening: Such as tooltips appearing and disappeearing in a split second - sometimes it will slide up and sometimes not appear at all.
Thanks
As a jquery noob i am stuck trying to make my tooltip move to the left/right.
See it in action here:http://www.huwsplace.co.uk/test/index.html
i want that same effect but to move to the left on hover, then back to the right when you move the mouse away.
I have played around with the script to no luck!
Please can someone help me with this?!
i have tried this script:
$(document).ready(function() {
// initialize tooltip
$("#social-icons img[title]").tooltip({
// use single tooltip element for all tips
tip: '#tooltip',
// tweak the position
position:'left center',
offset: [50, -100],
// use "slide" effect
effect: 'slide'
// add dynamic plugin
}).dynamic( {
// customized configuration on bottom edge
bottom: {
// slide downwards
direction: 'left',
// bounce back when closed
bounce: true
}
});
});
But, i am getting strange effects happening: Such as tooltips appearing and disappeearing in a split second - sometimes it will slide up and sometimes not appear at all.
Thanks
