加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 资源网站 > 资源 > 正文

如何在页面加载/使用Javascript时自动打开仅限CSS的弹出窗口?

发布时间:2020-12-14 22:57:04 所属栏目:资源 来源:网络整理
导读:我创建了仅限CSS的弹出窗口,只能通过单击链接/按钮来工作.我想在页面加载时自动显示此弹出窗口.此外,如何在不点击链接/按钮的情况下打开此弹出窗口,即使用Javascript / jQuery. Fiddle .modalDialog { position: fixed; top: 0; right: 0; bottom: 0; left:

我创建了仅限CSS的弹出窗口,只能通过单击链接/按钮来工作.我想在页面加载时自动显示此弹出窗口.此外,如何在不点击链接/按钮的情况下打开此弹出窗口,即使用Javascript / jQuery.

Fiddle

.modalDialog {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  opacity: 0;
  -webkit-transition: opacity 400ms ease-in;
  -moz-transition: opacity 400ms ease-in;
  transition: opacity 400ms ease-in;
  pointer-events: none;
}
.modalDialog:target {
  opacity: 1;
  pointer-events: auto;
}
.modalDialog > div {
  width: 400px;
  position: relative;
  margin: 10% auto;
  padding: 5px 20px 13px 20px;
  border-radius: 10px;
  background: #fff;
  background: #339999;
}
.close {
  background: #606061;
  color: #FFFFFF;
  line-height: 25px;
  position: absolute;
  right: -12px;
  text-align: center;
  top: -10px;
  width: 24px;
  text-decoration: none;
  font-weight: bold;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  -moz-box-shadow: 1px 1px 3px #000;
  -webkit-box-shadow: 1px 1px 3px #000;
  box-shadow: 1px 1px 3px #000;
}
.close:hover {
  background: #00d9ff;
}

提前致谢

最佳答案
由于您只是使用css opacity隐藏弹出窗口,因此如果要添加一些动画,则可以在页面加载时使用jquery来显示弹出窗口或淡入淡出.

在css中将弹出窗口的显示设置为none也可能是一个好主意,否则您可能会在以后遇到问题.你可以这样做:

.modalDialog {
  //added display none on element
  display:none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  //opacity: 0;
  -webkit-transition: opacity 400ms ease-in;
  -moz-transition: opacity 400ms ease-in;
  transition: opacity 400ms ease-in;
  pointer-events: none;
}

$(document).ready(function() {
  //Use jQuery to show the popup
  $('.modalDialog').show();
  //Alternativly use jQuery to fadeIn the popup
  $('.modalDialog').fadeIn()
})

最终更新代码:https://jsfiddle.net/q4n7p0jx/1/

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读