- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个关于 Jquery 和 CSS 的小问题,也许标题听起来重复,但我真的搜索了但找不到解决方案,或者我可能错过了一些东西。
情况是这样的。我正在构建一个带有汉堡菜单的网站,但我希望它像灯箱一样显示。我发现的第一个问题是灯箱在移动设备上没有固定,所以我使用了一个效果很好的覆盖,但在移动设备上,滚动感觉很奇怪。我发现它发生在属性“overflow: auto;”上。在背景 div 中,但如果我删除它,叠加层将沿页面滚动,而这正是我不想要的。
因此,我需要背景具有属性“溢出:可见;”当页面加载时使滚动平滑,并且只有当覆盖出现时它才会更改为“自动”以修复它。我尝试在覆盖层的 jquery 脚本中执行此操作,但是当覆盖层关闭时,它会保留新属性并且滚动变得很奇怪。
代码如下:
<div class='navbar-toggle' title='Menu'>
<div class='bar1'></div>
<div class='bar2'></div>
<div class='bar3'></div>
</div>
<nav class="nav-hide overlay">
<ul class="overlay-content">
<li><a href="#">Inicio</a></li>
<li><a href="#">Servicios</a></li>
<li><a href="#">Citas</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">Blog</a></li>
</ul>
</nav>
<div class="background-content">
<div id="col">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<br><br>
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?<br><br>
But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.
To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?</div>
</div>
<script src='//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
CSS:
body,
html {
margin: 0;
padding: 0;
height: 100%;
}
nav,
.navbar-toggle {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
nav {
position: absolute;
z-index: 10;
background-color: #E2B7C0;
width: 100%;
height: 100%;
text-align: center;
display: table;
color: white;
}
.nav-hide { display: none; }
nav ul {
display: table-cell;
vertical-align: middle;
padding-left: 0 !important;
}
nav ul li { list-style: none; margin-bottom: 15px;}
nav ul li a {
font-size: 25px;
color: inherit;
font-weight: normal;
text-decoration: none;
}
.navbar-toggle {
position:fixed;
top: 30px;
left: 30px;
width: 45px;
height: 45px;
z-index: 20;
cursor: pointer;
}
.bar1,
.bar2,
.bar3 {
width: 100%;
height: 3px;
margin-bottom: 10px;
background-color: #1c1f72;
transition: all 0.3s ease-in-out;
}
.navbar-on .bar1,
.navbar-on .bar2,
.navbar-on .bar3 { background-color: white; }
.navbar-on .bar1 {
transform-origin: 10% 40%;
transform: rotate(45deg);
}
.navbar-on .bar3 {
transform-origin: 10% 40%;
transform: rotate(-45deg);
}
.navbar-on .bar2 { background-color: transparent; }
#col{
margin: 80px 30px;
max-width: 600px;
}
.overlay{
position: fixed;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
}
.overlay .overlay-content {
height: 100%;
overflow: scroll;
}
.background-content{
height: 100%;
}
脚本:
$(function() {
$('.navbar-toggle, nav').click(function(){
$('.navbar-toggle').toggleClass('navbar-on');
$('nav').fadeToggle();
$('nav').removeClass('nav-hide');
$('.overlay').css('display','');
$('.background-content').css('overflow','auto'); //This is the line that I add
});
});
https://jsfiddle.net/Trebohdz/t2nz3aoy/5/
覆盖的代码是我在这里找到的解决方案,我尝试过使用.addClass和.removeClass事件,甚至.on和.off,但它不起作用或者我不知道如何集成它到代码。
我希望你能帮助我。
最佳答案
你可以创建一个 css 类和 toggle
:-
$(function() {
$('.navbar-toggle, nav').click(function() {
$('.navbar-toggle').toggleClass('navbar-on');
$('nav').fadeToggle();
$('nav').removeClass('nav-hide');
$('.overlay').css('display', '');
$('.background-content').toggleClass('overflow-auto');
});
});
.overflow-auto {
overflow: auto;
}
关于jquery - 单击时添加和删除 CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40055884/
SQLite、Content provider 和 Shared Preference 之间的所有已知区别。 但我想知道什么时候需要根据情况使用 SQLite 或 Content Provider 或
警告:我正在使用一个我无法完全控制的后端,所以我正在努力解决 Backbone 中的一些注意事项,这些注意事项可能在其他地方更好地解决......不幸的是,我别无选择,只能在这里处理它们! 所以,我的
我一整天都在挣扎。我的预输入搜索表达式与远程 json 数据完美配合。但是当我尝试使用相同的 json 数据作为预取数据时,建议为空。点击第一个标志后,我收到预定义消息“无法找到任何内容...”,结果
我正在制作一个模拟 NHL 选秀彩票的程序,其中屏幕右侧应该有一个 JTextField,并且在左侧绘制弹跳的选秀球。我创建了一个名为 Ball 的类,它实现了 Runnable,并在我的主 Draf
这个问题已经有答案了: How can I calculate a time span in Java and format the output? (18 个回答) 已关闭 9 年前。 这是我的代码
我有一个 ASP.NET Web API 应用程序在我的本地 IIS 实例上运行。 Web 应用程序配置有 CORS。我调用的 Web API 方法类似于: [POST("/API/{foo}/{ba
我将用户输入的时间和日期作为: DatePicker dp = (DatePicker) findViewById(R.id.datePicker); TimePicker tp = (TimePic
放宽“邻居”的标准是否足够,或者是否有其他标准行动可以采取? 最佳答案 如果所有相邻解决方案都是 Tabu,则听起来您的 Tabu 列表的大小太长或您的释放策略太严格。一个好的 Tabu 列表长度是
我正在阅读来自 cppreference 的代码示例: #include #include #include #include template void print_queue(T& q)
我快疯了,我试图理解工具提示的行为,但没有成功。 1. 第一个问题是当我尝试通过插件(按钮 1)在点击事件中使用它时 -> 如果您转到 Fiddle,您会在“内容”内看到该函数' 每次点击都会调用该属
我在功能组件中有以下代码: const [ folder, setFolder ] = useState([]); const folderData = useContext(FolderContex
我在使用预签名网址和 AFNetworking 3.0 从 S3 获取图像时遇到问题。我可以使用 NSMutableURLRequest 和 NSURLSession 获取图像,但是当我使用 AFHT
我正在使用 Oracle ojdbc 12 和 Java 8 处理 Oracle UCP 管理器的问题。当 UCP 池启动失败时,我希望关闭它创建的连接。 当池初始化期间遇到 ORA-02391:超过
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 9 年前。 Improve
引用这个plunker: https://plnkr.co/edit/GWsbdDWVvBYNMqyxzlLY?p=preview 我在 styles.css 文件和 src/app.ts 文件中指定
为什么我的条形这么细?我尝试将宽度设置为 1,它们变得非常厚。我不知道还能尝试什么。默认厚度为 0.8,这是应该的样子吗? import matplotlib.pyplot as plt import
当我编写时,查询按预期执行: SELECT id, day2.count - day1.count AS diff FROM day1 NATURAL JOIN day2; 但我真正想要的是右连接。当
我有以下时间数据: 0 08/01/16 13:07:46,335437 1 18/02/16 08:40:40,565575 2 14/01/16 22:2
一些背景知识 -我的 NodeJS 服务器在端口 3001 上运行,我的 React 应用程序在端口 3000 上运行。我在 React 应用程序 package.json 中设置了一个代理来代理对端
我面临着一个愚蠢的问题。我试图在我的 Angular 应用程序中延迟加载我的图像,我已经尝试过这个2: 但是他们都设置了 src attr 而不是 data-src,我在这里遗漏了什么吗?保留 d
我是一名优秀的程序员,十分优秀!