Magento中的工具提示鼠标溢出

时间:2014-07-14 13:25:39

标签: magento

如何在magento中添加工具提示鼠标溢出按钮。

E.g。

T恤颜色[工具提示鼠标悬停按钮]: 红色 绿色 黑

谢谢

2 个答案:

答案 0 :(得分:0)

您可以使用jquery ui工具提示:http://jqueryui.com/tooltip/

答案 1 :(得分:0)

您好可以使用工具提示使用css检查下面的代码可能会对您有所帮助

<style>
.tooltip{display: inline;position: relative;}
.tooltip:hover:after{background: #333;background: rgba(0,0,0,.8);border-radius: 5px;bottom: 10px;color: #fff;content: attr(title);
            left: 20%;padding: 5px 15px;position: absolute;z-index: 98;width: 220px;}
.tooltip:hover:before{border: solid;border-color: #333 transparent;border-width: 6px 6px 0 6px;bottom: 6px;content: "";left: 50%;position: absolute;z-index: 99;}
.tip{display:inline-block;padding-left:12px;}
</style>
<div class="tip">
  <a href="#" title="Enter Value here" class="tooltip">mouse hover here</a></div>