Created
August 27, 2012 03:33
-
-
Save bastengao/3485297 to your computer and use it in GitHub Desktop.
bootstram popover following mouse
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(function () { | |
$("#stage").mousemove(function (event) { | |
var pageX = event.pageX; | |
var pageY = event.pageY; | |
$("#tooltip-ele").offset({ left:pageX + 10, top:pageY }) | |
.popover({ | |
title:"提示", | |
content:"<i class='icon-book'></i>内容内容内容内容内容内容内容", | |
html:true, | |
animation:false, | |
placement:'right', | |
trigger:'manual' | |
}).popover('show'); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment