我正在使用引导材料设计:https ://fezvrasta.github.io/bootstrap-material-design/bootstrap-elements.html
这包括在按下按钮时产生整洁的涟漪效应,这在我的页面中的任何地方都有效,除了在 html 中具有 display:none 但使用 javascript 对用户可见的弹出框 div 中。
HTML:
<a href="#" class="pop" data-id="#popover_div1" data-container="body" data-placement="top" title="Popover title">Click to open popover</a>
<div id="popover_div1" style="display: none">
<div>
<img class="img-rounded" src="img/temp.png" alt="temp" height="25" width="25"/>
This is your div content
</div>
<div>
<div class="btn-group">
<a href="javascript:void(0)" class="btn btn-default">5</a>
<a href="javascript:void(0)" class="btn btn-default">6</a>
<a href="javascript:void(0)" class="btn btn-default">7</a>
</div>
</div>
</div>
JS:
$(".pop").popover({
trigger: "manual",
html: true,
animation:false,
content: function() {
return $($(this).attr('data-id')).html();
}
}).on("mouseenter", function () {
var _this = this;
$(this).popover("show");
$(".popover").on("mouseleave", function () {
$(_this).popover('hide');
});
}).on("mouseleave", function () {
var _this = this;
setTimeout(function () {
if (!$(".popover:hover").length) {
$(_this).popover("hide");
}
}, 200);
});
如果我取出 style="display:none",涟漪效果会起作用,但包含它会使涟漪效果不适用于 div 内的按钮,真的很奇怪。有什么办法让我保持显示:无(因为弹出框的工作方式就像我想要的那样),但仍然对 div 中的按钮产生涟漪效应?