寻找一个如何使用beautytips的简单示例(包括HTML + CSS)? 我的要求就是这个 - 我正在显示产品名称。在产品名称的悬停中,我想在工具提示中显示产品图片。我该怎么做?
感谢
答案 0 :(得分:1)
这是一个包含一些示例的网站: http://www.lullabot.com/files/bt/bt-latest/DEMO/index.html
假设你是指这个jquery插件。
答案 1 :(得分:0)
在这里。您只需要确保js文件已加载。请注意,我在这里使用hoverintent lib在弹出任何内容之前给出了延迟。
<script type="text/javascript" src="jquery-1.5.1.min.js"></script>
<script type="text/javascript" src="jquery.bt.min.js"></script>
<script type="text/javascript" src="jquery.hoverIntent.minified.r6.js">
<div id="mydiv">Mouse over here to see it poppin'</div>
<script>
$("mydiv").bt("Text to pop out",{
showTip: function(box){
$(box).fadeIn(300);
},
hideTip: function(box, callback){
$(box).animate({opacity: 0}, 100, callback);
},
hoverIntentOpts: {
interval: 1000,
timeout: 200
},
fill: '#E1EEF8',
cornerRadius: 10,
strokeWidth: 0,
shadow: true,
shadowOffsetX: 3,
shadowOffsetY: 3,
shadowBlur: 8,
shadowColor: 'rgba(0,0,0,.9)',
shadowOverlap: false,
noShadowOpts: {strokeStyle: '#999', strokeWidth: 2},
positions: ['top', 'bottom','right']
});
</script>