Skip to content

Instantly share code, notes, and snippets.

@bastengao
Created August 27, 2012 03:33
Show Gist options
  • Save bastengao/3485297 to your computer and use it in GitHub Desktop.
Save bastengao/3485297 to your computer and use it in GitHub Desktop.
bootstram popover following mouse
$(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