关闭弹出窗口后避免重定向

时间:2016-04-22 14:39:26

标签: html css popup

我的目的是在点击我页面上的特定链接后显示一个弹出窗口。 弹出窗口出现后,如果我点击其他地方它会关闭(应该如此),但我被重定向到我的网站顶部。

为了避免重定向,是否可以稍微改变CSS代码?
或者我需要JS代码?

另一种选择是在链接中设置锚点。我将测试只有在没有其他方法通过CSS做到这一点。

我的CSS代码在这里:

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 200ms;
  visibility: hidden;
  opacity: 0;
}
.overlay.light {
  background: rgba(255, 255, 255, 0.5);
}
.overlay .cancel {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: default;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 75px auto;
  padding: 20px;
  background: rgb(37, 183, 211);
  border: 1px solid #666;
  width: 300px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  position: relative;
}
.light .popup {
  border-color: #aaa;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}
.popup .close {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 20px;
  right: 20px;
  opacity: 0.8;
  transition: all 200ms;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: #666;
}
.popup .close:hover {
  opacity: 1;
}
.popup .content {
  max-height: 400px;
  overflow: auto;
}

HTML链接在这里:

LINK更具体地说,请滚动到“收藏夹”标签,然后点击电影图标以查看弹出窗口。

3 个答案:

答案 0 :(得分:1)

我的建议是:不要使用:target伪元素来显示弹出窗口。

显示弹出窗口的最佳方式是使用javascript或更好JQuery,然后开发一个简单的脚本或使用插件。

这是一个您可以编辑和调整案例的示例:FIDDLE

但如果您想保留:target,则可以使用href="#fakelink",而不是href="#"。请参阅此处的演示:DEMO

答案 1 :(得分:0)

在纯CSS的弹出窗口方法中,您可以使用:target伪类来触发可见性。要关闭弹出窗口,请导航到"#"这就是为什么你被重定向"到页面顶部。

没有CSS方法可以通过点击其他地方来隐藏弹出窗口。如果您必须使用相同的仅限CSS的弹出窗口方法,则可以导航到页面的现有锚点导航到页面<a class="cancel" href="#popup2closed"></a>的不存在的锚点并避免任何&#34;重定向&#34;。它只会使弹出窗口再次隐形。

答案 2 :(得分:0)

在codepen上搜索了很多选项后,我使用了JS:

HTML:

            <div id="ModalContentWrap" class="modal-wrap">
              <div class="modal-content mix">
                    <section id="stigma-box">
                        <header>
                            <h1>21 Grams</h1>
                            <span class="avatar"><img src="image.jpg" alt="" /></span>
                            <h3><a href=" " target="blank"> ...</a></h3> 
                        </header>
                    </section>
              </div>
            </div>

CSS:

.modal-trigger {
  cursor: pointer;
  outline: 0 none;
}

.modal-wrap,
.modal-bg,
.modal-content {
  display: none;
  position: fixed;
}

.modal-wrap,
.modal-bg {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.modal-wrap {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
}

.modal-bg {
  background: rgba(0, 0, 0, .6);
}

.modal-content {
    z-index: 1;
    top: 50%;
    left: 50%;
    margin: -100px 0 0 -150px;
    padding: 20px;
    background: rgb(37, 183, 211);
    border: 1px solid #666;
    width: 300px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    position: absolute;
}

.modal-close {
  display: inline-block;
  padding: 10px;
  cursor: pointer;
}

JS:

var mixModal = {
  $bg: null,
  $content: null,
  init: function() {

    // Instantiate MixItUp on background wrapper

    this.$bg.mixItUp({
      controls: {
        enable: false
      },
      load: {
        filter: 'none'
      },
      animation: {
        effects: 'fade',
        duration: 400,
      }
    });

    // Instantiate MixItUp on content wrapper

    this.$content.mixItUp({
      controls: {
        enable: false
      },
      animation: {
        effects: 'fade translateZ(-300px) translateY(5%)',
        duration: 300,
        easing: 'cubic-bezier(0.175, 0.885, 0.32, 1.275)'
      },
      load: {
        filter: 'none'
      }
    });
  },

  // Create a "show" method

  show: function() {
    this.$bg.show().mixItUp('filter', 'all');
    this.$content.show().mixItUp('filter', 'all');
  },

  // Create a "hide" method

  hide: function() {
    this.$bg.mixItUp('filter', 'none', function() {
      $(this).hide();
    });
    this.$content.mixItUp('filter', 'none', function() {
      $(this).hide();
    });
  }
};

// On document ready:

$(function() {

  // Assign elements to modal properties

  mixModal.$bg = $('#ModalBgWrap');
  mixModal.$content = $('#ModalContentWrap');

  // Initialize modal

  mixModal.init();

  // Bind click handlers

  $('.modal-trigger').on('click', function() {
    mixModal.show();
  });

  $('.modal-close, .modal-wrap').on('click', function(e) {
    if (e.target === this) {
      mixModal.hide();
    }
  });

});