admin管理员组文章数量:1345475
I have assigned to a div an :active
CSS pseudo class, to make it "responsive" on clicks and holds.
.quarter:active{
opacity: 0.5;
}
What I want to achieve is to simulate a long click with JQuery.
The .trigger("click")
doesn't seem to do the trick since there is no visible discoloration. I have also tried with .trigger("focus")
and .trigger("mousedown")
but it seems I mess up somewhere.
<div id="1" class="quarter green" ></div>
<div id="2" class="quarter red" ></div>
<div id="3" class="quarter yellow" ></div>
<div id="4" class="quarter blue" ></div>
Is there a way to achieve that or do I have to use a toggleClass
approach?
Edit: Thanks to nashcheez answer I solved my problem using the .trigger("focus")
followed by a setTimeout(...{ .blur() })
.
Thank you all for the quick responses.
I have assigned to a div an :active
CSS pseudo class, to make it "responsive" on clicks and holds.
.quarter:active{
opacity: 0.5;
}
What I want to achieve is to simulate a long click with JQuery.
The .trigger("click")
doesn't seem to do the trick since there is no visible discoloration. I have also tried with .trigger("focus")
and .trigger("mousedown")
but it seems I mess up somewhere.
<div id="1" class="quarter green" ></div>
<div id="2" class="quarter red" ></div>
<div id="3" class="quarter yellow" ></div>
<div id="4" class="quarter blue" ></div>
Is there a way to achieve that or do I have to use a toggleClass
approach?
Edit: Thanks to nashcheez answer I solved my problem using the .trigger("focus")
followed by a setTimeout(...{ .blur() })
.
Thank you all for the quick responses.
-
1
I would use a
toggleClass
approach, why not. – niklas Commented Mar 21, 2017 at 12:32 -
:active
is mostly used witha
andbutton
not sure if it would work withdiv
– abhishekkannojia Commented Mar 21, 2017 at 12:32 - how about using selector: .quarter:active,.quarter.active ? – blackmiaool Commented Mar 21, 2017 at 12:33
- This question would probably easier to answer when you add a bit more information like: Why do you need a "mousehold" event in JS and what do you actually want to achieve? – empiric Commented Mar 21, 2017 at 12:37
-
@abhishekkannojia Yes this definitely works with
:active
– empiric Commented Mar 21, 2017 at 12:38
3 Answers
Reset to default 5You can do it without jQuery
and in pure css
. You can just provide it a focus
state in css and a tabindex
attribute in the html.
Refer code:
.quarter {
height: 40px;
width: 40px;
display: inline-block;
margin-right: 15px;
cursor: pointer;
}
.quarter:focus {
opacity: 0.5;
}
.green {
background-color: green;
}
.red {
background-color: red;
}
.yellow {
background-color: yellow;
}
.blue {
background-color: blue;
}
<div id="1" class="quarter green" tabindex="1"></div>
<div id="2" class="quarter red" tabindex="1"></div>
<div id="3" class="quarter yellow" tabindex="1"></div>
<div id="4" class="quarter blue" tabindex="1"></div>
This way your opacity
persists on click of the div
, and returns back to the normal value on clicking anywhere outside.
Read more about the tabindex
attribute here.
Generally, :active can be applied to <a>
or <button>
elements (as they are clickable), to make a div
:active
first you need to click on div it, then will be in :active state, also in the same case you can use :focus
on this element to show as active.
Second option you can use active
class and add it on particular div
.
See the below snippet with its working.
$('.quarter.green').trigger('focus');
.quarter:active,
.quarter:focus,
.quarter.active {
opacity: 0.5;
color: red;
}
.quarter:active {
color: green
}
<script src="https://ajax.googleapis./ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<div id="1" class="quarter green" contenteditable="true">1 Using contenteditable property</div>
<div id="2" class="quarter red active">2 Using active class</div>
<div id="3" class="quarter yellow">3</div>
<div id="4" class="quarter blue">4</div>
In case you want to use toogleclass with transitions this can work
$('.quarter').click(function(){
$(this).toggleClass('active');
})
.quarter:active, .active{
opacity: 0.5;
transition: 1s all ease-in;
}
<script src="https://ajax.googleapis./ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="1" class="quarter green" >green</div>
<div id="2" class="quarter red" >red</div>
<div id="3" class="quarter yellow" >yellow</div>
<div id="4" class="quarter blue" >blue</div>
本文标签: javascriptBringing a div to active state via jquery trigger() methodStack Overflow
版权声明:本文标题:javascript - Bringing a div to :active state via jquery .trigger() method - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743797781a2540748.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论