Skip to content

Instantly share code, notes, and snippets.

View bastengao's full-sized avatar
🏠
Working from home

Basten Gao bastengao

🏠
Working from home
View GitHub Profile
@bastengao
bastengao / FollowingMousePopover
Created August 27, 2012 03:33
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,
public class HelloWorld {
public static void main(String[] args){
System.out.println("hello world");
}
}