天天看點

html中php彈出提示框,html頁面彈出提示框淡入淡出css,js消息提醒

html:

html中php彈出提示框,html頁面彈出提示框淡入淡出css,js消息提醒

消息提醒

活動已結束,獎項清空!

知道啦

css:

.mask{.mask{ z-index: 5; width: 100%; height: 100%; position: fixed; bottom: 0; background: rgba(0,0,0,0.7); overflow: hidden; display: none; } .mask_Cont{ width: 60%;  height: 260px; background-color: #FFFFFF; border-radius: .1rem; margin-left: auto; margin-right: auto; margin-top: 40%; overflow: hidden; padding-bottom: .3rem; } .active_top{ width: 100%; margin-bottom: .3rem; } .active_close{ width: 100%; height: .6rem; position: relative; } .active_close img{ position: absolute;    bottom: 0;    width: 30px;    height: 30px;    right: 10px;    top: 10px; } .active_Prize{ width: 100%; padding-left: 10px;    padding-right: 10px; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; overflow: hidden; margin-bottom: .2rem; position: relative; } .active_Prize h1{    font-size: 26px; color: #ff3744; margin-bottom: .1rem; } .active_Prize p{ color: #838383;        font-size: 24px;    white-space: nowrap;    text-overflow: ellipsis;    overflow: hidden;    text-align: center;    margin-top: 1rem; }  .active_now{ margin-left: auto; margin-right: auto; width: 50%; height: 56px; text-align: center; line-height: 56px; font-size: 30px; background-color: #ffdd4e; color: #8B521A; margin-top: 50px; border-radius: 10px; -webkit-border-radius: 10px; }

js:

//活動說明$(“.active_now, .Close_thisz”).click(function(){ close($(“.mask”)); });

function close(obj){ obj.fadeOut(200); };

function show(obj){ obj.fadeIn(200); }

show($(“.mask”));

版權所有丨如未注明 , 均為原創 , 轉載請注明html頁面彈出提示框淡入淡出css,js!