在悬停时点击按钮显示加载gif

时间:2017-05-01 07:46:47

标签: javascript jquery html css

我有表格,此表格用于发送邮件。单击按钮需要5-10秒发送(它同时执行许多其他选项,这就是为什么5-10秒)并且在所有条件成功时它显示文本。我需要在此暂停之间运行加载gif并使背景禁用以更改(或者可能是模糊效果)。

P.S。这不是一个公开我读了很多主题,但找不到我的条件。

1 个答案:

答案 0 :(得分:1)

只需在代码中单击按钮即可使用gif图像, 显示你的形象



$("#button").click(function() {
    $(".container").css("opacity", 0.2);
   	$("#loading-img").css({"display": "block"});
    
    //here palce your code
    
    //i set timeout that you can view the change
    //you must use below code without setTimeout function
    setTimeout(function(){
   	            $(".container").css("opacity", 1);
   		    $("#loading-img").css({"display": "none"});
 		},3000);        
});

#loading-img {
	background: url("http://www.chimply.com/images/samples/classic-spinner/animatedEllipse.gif") center center no-repeat;
    display: none;
    height: 50px;
    width: 50px;
    position: absolute;
    top: 33%;
    left: 1%;
    right: 1%;
    margin: auto;
}
.container{
    height: 150px;
    background: #000;
    color: #fff;
}
.group {
    position: relative;
    width: 70%;
}

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="group">
    <div class="container">container</div>
    <div id="loading-img"></div>
    <button id="button">Submit</button>
</div>
&#13;
&#13;
&#13;