- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在我的 javascript 中添加一个 if 语句,这样如果我的部分类有事件类,我不希望它在单击按钮时做任何事情,但如果没有,我希望它运行我创建的匿名函数只是一个简单的转换。无法在需要去的地方或如何实现它的地方工作。我还没有将幻灯片设置为在点击时更改,因为我只是想让这个位先工作。
编辑
只是为了澄清,我不确定检查类事件的 if 语句是否必须在循环之前或 btn[i] 事件监听器内部。如果 document.querySelectorAll('.sections').classListContains('active') {什么都不做 } else { 运行下面的代码}
感谢任何建议
var btn = document.querySelectorAll('.button');
var sections = document.querySelectorAll('.sections');
for (var i = 0; i < btn.length; i++) {
btn[i].addEventListener('click', function() {
document.querySelector('.transition__overlay').classList.add('transition__overlay--active');
setTimeout(function() {
document.querySelector('.transition__overlay').classList.remove('transition__overlay--active');
}, 1200);
});
}
* {
padding: 0;
margin: 0;
}
.wrapper {
width: 100%;
height: 100vh;
position: relative;
}
.buttons {
position: absolute;
bottom: 0;
width: 100%;
height: 50px;
display: flex;
align-items: center;
background: grey;
}
.button {
flex: 1 0 0;
text-align: center;
cursor: pointer;
}
.button span {
color: black;
}
.transition__overlay {
position: absolute;
top: 0;
right: 0;
width: 0;
height: 100%;
z-index: 9999;
background-color: brown;
transition: width 1s;
}
.transition__overlay--active {
width: 100%;
left: 0;
transition: width 1s;
}
.sections {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
transform: translateX(-100%);
text-align: center;
display: flex;
justify-content: center;
align-items: center;
}
.sections.active {
transform: translateX(0);
}
<div class="wrapper">
<div class="transition__overlay"></div>
<section class="sections section1 active">
<span>Section 1</span>
</section>
<section class="sections section2">
<span>Section 2</span>
</section>
<section class="sections section3">
<span>Section 3</span>
</section>
<section class="sections section4">
<span>Section 4</span>
</section>
<div class="buttons">
<div class="button button1">
<span>button 1</span>
</div>
<div class="button button1">
<span>button 2</span>
</div>
<div class="button button1">
<span>button 3</span>
</div>
<div class="button button1">
<span>button 4</span>
</div>
</div>
</div>
最佳答案
使用 if 语句
的工作解决方案,如果任何 sections
类具有类 active
,它将停止效果
// Check whether any element with class `sections` has `active` class
function CheckClass()
{
for (var j = 0 ; j < document.getElementsByClassName("sections").length ; j++) {
for (var k = 0 ; k < document.getElementsByClassName("sections").length ; k++ ) {
if (document.getElementsByClassName("sections")[j].getAttribute("class") == "sections section" + k + " active")
return "active" ;
// the `sections` class has an `active class`
// exit
}
}
return "inactive" ;
}
var btn = document.querySelectorAll('.button');
var sections = document.querySelectorAll('.sections');
for (var i = 0; i < btn.length; i++) {
btn[i].addEventListener('click', function() {
if (CheckClass() !== "active") { document.querySelector('.transition__overlay').classList.add('transition__overlay--active');
setTimeout(function() {
document.querySelector('.transition__overlay').classList.remove('transition__overlay--active');
}, 1200);
}
});
}
* {
padding: 0;
margin: 0;
}
.wrapper {
width: 100%;
height: 100vh;
position: relative;
}
.buttons {
position: absolute;
bottom: 0;
width: 100%;
height: 50px;
display: flex;
align-items: center;
background: grey;
}
.button {
flex: 1 0 0;
text-align: center;
cursor: pointer;
}
.button span {
color: black;
}
.transition__overlay {
position: absolute;
top: 0;
right: 0;
width: 0;
height: 100%;
z-index: 9999;
background-color: brown;
transition: width 1s;
}
.transition__overlay--active {
width: 100%;
left: 0;
transition: width 1s;
}
.sections {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
transform: translateX(-100%);
text-align: center;
display: flex;
justify-content: center;
align-items: center;
}
.sections .active {
transform: translateX(0%);
}
<div class="wrapper">
<div class="transition__overlay"></div>
<section class="sections section1 active">
<span>Section 1</span>
</section>
<section class="sections section2">
<span>Section 2</span>
</section>
<section class="sections section3">
<span>Section 3</span>
</section>
<section class="sections section4">
<span>Section 4</span>
</section>
<div class="buttons">
<div class="button button1">
<span>button 1</span>
</div>
<div class="button button1">
<span>button 2</span>
</div>
<div class="button button1">
<span>button 3</span>
</div>
<div class="button button1">
<span>button 4</span>
</div>
</div>
</div>
关于javascript - 如果元素有类什么都不做运行匿名函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50045710/
所以 promises 对我来说是相当新的,但我喜欢这个想法。 之前... 我以前用过这个,它只在文件被完全读取并按预期工作后才简单地返回数据: function something{ fo
当我尝试编译时出现以下错误: In member function 'double search::IDAstar::dfs(const State&, double)': 153:18: erro
最接近下面的是什么?不幸的是,下面的方法名称编译错误。 int val = delegate(string s) { return 1; }("test"); 我也尝试了 (...)=>{..
1、评论提交超时: 大家可能会发现,在提交评论非常缓慢时最容易出现“匿名”现象,这种情况主要是由于评论提交时执行时间过长引起的,可能是装了比较耗时的插件(比如Akismet等);很多博
我想在同一个表中使用一个键插入一个匿名表,如下所示: loadstring( [[return { a = "One", b = a.." two" }]] ) 在我看来,这应该返回下表: {
有人知道免费的匿名 smtp 服务吗?我想让我的应用程序的用户能够偶尔向我发送一封匿名电子邮件,而无需配置输入他们电子邮件帐户的服务器。我想我可以为此目的设置一个 gmail 帐户并将凭据嵌入到应用程
我有这个数据补丁: ALTER TABLE MY_TABLE ADD new_id number; DECLARE MAX_ID NUMBER; BEGIN SELECT max(id)
假设我有以下数据框。 Person_info (Bob, 2) (John, 1) (Bek, 10) (Bob, 6) 我想通过保持它们的值(value)来匿名。 Person_info (Pers
根据多个国家/地区的法律要求,我们在日志文件中匿名化用户的 IP 地址。使用 IPv4,我们通常只是匿名化最后两个字节,例如。而不是 255.255.255.255我们记录255.255.\*.\*
我正在学习有关 Scala 的更多信息,但在理解 http://www.scala-lang.org/node/135 中的匿名函数示例时遇到了一些麻烦。 .我复制了下面的整个代码块: object
我正在开设一个 Commerce 网上商店。 我想添加 Commerce 愿望 list ,但现在该模块仅适用于注册用户,因为未注册它不起作用。 我将显示 block 中的角色设置为匿名,但即使在更改
我正在使用发现的 Google Apps 脚本 here让匿名用户将文件上传到我的 Google 云端硬盘。 我想要的是脚本使用表单上输入的名称创建一个文件夹,然后将文件存放在该文件夹中。 到目前为止
我遇到的情况是,我正在等待一些事件的发生。我看到很多关于如何使用命名函数使用 setTimeout 的好例子,但是有没有办法使用某种匿名方法来设置超时? 代码目前看起来像这样: testForObje
我一直在阅读一些关于 Android 内存泄漏的文章,并观看了来自 Google I/O 的这个有趣的视频 on the subject . 尽管如此,我仍然不完全理解这个概念,尤其是当它对用户安全或
我正在尝试适应 Spring JDBC,但让我烦恼的是使用这些匿名类,我们不能传递任何局部变量,除非它们是最终的,这可能很容易安排,但是如果我需要循环一个怎么办?数组还是集合?我无法将“FedMode
我正在尝试将数据输入到 Oracle 数据库中。这将是一个带有多个参数的存储过程……我的意思是像 27 个参数(别问,我没有设计它)…… 现在我必须以某种方式填充此存储过程的参数...存储过程采用的大
我之前问过这个问题:Combine a PartialFunction with a regular function 然后意识到,我实际上并没有问对。 所以,这是另一个尝试。 如果我这样做: va
我想从 C++ 执行一个匿名的 Qt 脚本函数,但不知道要使用的 QScriptContext。 这是脚本: { otherObject.Text = "Hello World"; setTi
我有一个返回 promise 的函数。 (本例中为 foo) 我尝试在声明为匿名的解析函数中调用此函数。 我已经尝试过使用this 但这不起作用。 我的代码是这样的 var foo = functio
这个问题的灵感来自这个 excellent example .我有 ASP.NET Core MVC 应用程序,我正在编写 unit tests为 Controller 。其中一种方法返回带有匿名类型
我是一名优秀的程序员,十分优秀!