如何更改甜蜜警报按钮的css悬停属性?

时间:2017-03-09 12:20:23

标签: jquery css sweetalert

我想更改甜蜜警报确认按钮的:hover属性。 我写了以下代码:

sweetAlert({
            title: "<span style='color: #134563'>[My title]",
            text: "<span style='font-size: 20px'>[My Message.....]",
            imageUrl: "images/email-icon.png",
            allowOutsideClick: false,
            confirmButtonColor: "#134563",
            customClass: ".sweet-alert button:hover{ background:'#2b5c79'; -webkit-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; }",
            html: true
        });

但即使使用类自定义,我也无法获得:hover属性。 我该如何解决?

2 个答案:

答案 0 :(得分:1)

<强>更新

您需要将customClass定义为:customClass: ".sweet-alert button"。现在,您可以将样式表(css)中的样式定义为.sweet-alert button:hover{ background:'#2b5c79'; -webkit-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; }。我知道该代码段不起作用,仅用于说明目的。您可以找到documentation heredocu sweetalert2(已给出示例)。

sweetAlert({
            title: "<span style='color: #134563'>[My title]",
            text: "<span style='font-size: 20px'>[My Message.....]",
            imageUrl: "images/email-icon.png",
            allowOutsideClick: false,
            confirmButtonColor: "#134563",
            customClass: ".sweet-alert button",
            html: true
        });
.sweet-alert button:hover { 
  background:'#2b5c79'; 
  -webkit-transition: all 0.3s ease-in-out; 
  transition: all 0.3s ease-in-out; 
}

旧答案

你可以试试这个。将这些事件添加到您的按钮,您可以模拟悬停事件。

$(".myclass").mouseover(function() {
    $(this).css("background-color","red");
}).mouseout(function() {
    $(this).css("background-color","transparent");
});
.myclass {
  height: 50px;
  width: 100%;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="myclass"></div>

答案 1 :(得分:1)

您可以直接使用 jquery 定位按钮

$(".swal2-confirm.swal2-styled").on('mouseenter', function() {$(this).css('background', 'green')})

结果

enter image description here

离开时设置颜色:

$(".swal2-confirm.swal2-styled").on('mouseleave', function() {$(this).css('background', 'blue')})