当前位置: 代码迷 >> Web前端 >> 使用jQuery插件qtip遇到的位置有关问题
  详细解决方案

使用jQuery插件qtip遇到的位置有关问题

热度:135   发布时间:2012-11-23 22:54:33.0
使用jQuery插件qtip遇到的位置问题
$("#myQtip").qtip({
		id: 'testTip',
		content: {
			text:' ',
			title: {text: "信息",button:true}
		},
		position: {
			target: 'event', 
			effect: true,
			container : $(self.el),
			at: 'top left',
			my: "left center",
			viewport: $(window),
			method: 'shift none',
			adjust: {x: 250}
		},
		show: {
			event: 'click',
			target: elems
		},
		events: {
        	render: function(event, api) {},
		show: function(event, api) {}
		}
});
  相关解决方案