首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >使Pop-up滚动

使Pop-up滚动
EN

Stack Overflow用户
提问于 2022-06-25 07:17:15
回答 1查看 99关注 0票数 1

想知道如何使弹出滚动。

弹出部分中的内容在移动屏幕中被剪短。

在桌面上,它显示得很好。但是在移动设备上,只有背景被滚动,而不是弹出。

代码语言:javascript
复制
.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 30%;
  position: relative;
  transition: all 5s ease-in-out;
}


.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

.popup .content {
  max-height: 30%;
  overflow: auto;
}

@media screen and (max-width: 700px){
  .popup{
    width: 70%;
  }
代码语言:javascript
复制
 <span><a href="#popup">Full Recipe</a></span>
          <div id="popup" class="overlay">
    <div class="popup">
        <h3>Foxtail Millet Porridge:</h3>
        <a class="close" href="#">×</a>
        <div class="content">
            <span>Ingredients:</span>

谢谢你的帮助!

在这里输入图像描述

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2022-06-25 09:47:12

内容高度太大,不允许滚动。

以下是全码的代码库

代码语言:javascript
复制
.popup {
  transform: translateY(-60px); /* moves container up the page */
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 30%;
  position: relative;
  transition: all 5s ease-in-out;
}
.content {
  height: 250px; /* adjust this depending on the size that you want the 
                    container to be */
}
.popup .content {
  overflow-y: scroll;
}
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/72751977

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档