如何在Wordpress中制作弹出式博客内容

时间:2016-08-08 23:25:05

标签: javascript wordpress popup modalpopup

我想在索引上显示我的参考作品。我限制了这些话。我的目标是:想要了解有关帖子的详细信息的用户,将点击帖子缩略图,其余内容将打开弹出窗口。

我用w3css模态来制作它。我的javascript代码是:

b

但只有第一篇文章看起来像那样。其他人没有反应。

感谢。

I want to make all thumbnails like that

我对此做了一些修改。我使用了fancybox 2并用这个

更改了我的代码
// Get the modal
var modal = document.getElementById('myModal');

// Get the button that opens the modal
var btn = document.getElementById("myBtn");

// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];

// When the user clicks on the button, open the modal 
btn.onclick = function() {
modal.style.display = "block";
}

// When the user clicks on <span> (x), close the modal
span.onclick = function() {
modal.style.display = "none";
}

// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal) {
    modal.style.display = "none";
}
}

现在所有缩略图都以fancybox打开,但这次是其他缩略图&#39;内容与第一篇文章相同。

2 个答案:

答案 0 :(得分:0)

我不认为在每个容器中创建一个模态元素是一种正确的方法。

相反,我建议你只制作一个模态元素,并改变

的内容

点击任何图像时的模态。

因此,这是我刚刚制作的一个演示

JSbin

步骤

  1. 找出所有容器元素
  2. 将这些元素绑定到click事件
  3. 当用户点击一个元素时,提取该元素的文本和图像src
  4. 注入modal-body
  5. 删除hide课程

答案 1 :(得分:0)

将模态混合在一起很好。你必须对事件处理程序有点挑剔,哪一个要关闭,但它不是太糟糕。

&#13;
&#13;
var sites = document.querySelectorAll('.site');
var closes = document.querySelectorAll('.close');
var ix;

for (ix = 0; ix < sites.length; ix++) {
  sites.item(ix).addEventListener('click', showModal);
}

for (ix = 0; ix < closes.length; ix++) {
  closes.item(ix).addEventListener('click', closeModal);
}

function showModal(e) {
  e.stopPropagation();
  this.querySelector('.modal').style.display = "block";
}

function closeModal(e) {
  e.stopPropagation();
  try {
    getParent(this, 'modal').style.display = "none";
  } catch (e) {
    console.warn('Failed to find my daddy.');
  }
}

function getParent(el, cls) {
  while (el.parentElement) {
    el = el.parentElement;
    if (el.classList.contains(cls)) return el;
  }
  return null;
}
&#13;
.site {
  display: inline-block;
}
.thumbnail {
  width: 100px;
  height: 100px;
  border: 1px solid black;
  margin: 10px;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 50%;
}
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  line-height: 28px;
  font-weight: bold;
  cursor: pointer;
}
.close:hover,
.close:focus {
  color: #000;
}
&#13;
<link href="//cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css" rel="stylesheet" />
<div class="container">
  <div class="site">
    <div class="thumbnail"></div>
    <div class="modal">
      <div class="modal-content">
        <span class="close">×</span> First Item
      </div>
    </div>
  </div>
  <div class="site">
    <div class="thumbnail"></div>
    <div class="modal">
      <div class="modal-content">
        <span class="close">×</span> Second Item
      </div>
    </div>
  </div>
</div>
&#13;
&#13;
&#13;