I want to show this html code, only on small screens.
<div id="NightDiv" class="w3-center" style="padding-top:20px"><i id="nightMode2" class="fa fa-moon-o fa-lightbulb-o w3-cursor-pointer w3-amazon" aria-hidden="true"></i>
</div>
This is what I am trying with no success:
$(document).ready(function() {
if ((screen.width>=1024) ) {
$("#NightDiv").hide();
}
else {
$("#NightDiv").show();
}
});
I want to show this html code, only on small screens.
<div id="NightDiv" class="w3-center" style="padding-top:20px"><i id="nightMode2" class="fa fa-moon-o fa-lightbulb-o w3-cursor-pointer w3-amazon" aria-hidden="true"></i>
</div>
This is what I am trying with no success:
$(document).ready(function() {
if ((screen.width>=1024) ) {
$("#NightDiv").hide();
}
else {
$("#NightDiv").show();
}
});
Share
edited Sep 2, 2017 at 11:03
asked Sep 2, 2017 at 10:56
user7038047user7038047
3
-
Try using
window.innerWidth
. – user6019272 Commented Sep 2, 2017 at 10:59 - you could use css media queries – Dinesh undefined Commented Sep 2, 2017 at 11:00
- yep that worked @DoMiNeLa10 – user7038047 Commented Sep 2, 2017 at 11:01
5 Answers
Reset to default 5You don't need JavaScript for this. Use CSS Media Query to do this,
/*Hide for larger screens*/
#NightDiv {
display: none;
}
/*show for small screens */
@media screen and (max-width: 1023px) { /* I've given 1023px but you can change to proper width */
#NightDiv {
display: block;
}
}
This is better handled by CSS media queries. See sample below: (expand the snippet to hide the div)
//no javascript!
.w3-center {
display: none; /* hide by default */
}
@media(max-width:1024px){
.w3-center {
display: block; /* or inline, or whichever style you prefer*/
}
}
<link href="https://cdnjs.cloudflare./ajax/libs/font-awesome/4.7.0/css/font-awesome.css" rel="stylesheet"/>
<div id="NightDiv" class="w3-center" style="padding-top:20px"><i id="nightMode2" class="fa fa-moon-o fa-lightbulb-o w3-cursor-pointer w3-amazon" aria-hidden="true"></i>
</div>
<div id="NightDiv" class="w3-center" style="padding-top:20px">
<i id="nightMode2" class="fa fa-moon-o fa-lightbulb-o w3-cursor-pointer w3-amazon" aria-hidden="true"></i>
</div>
<style>
#NightDiv{
display: none;
}
@media only screen and (max-width:768px{
#NightDiv{
display: block;
}
}
</style>
Try this code
jQuery(document).ready(function () {
jQuery('#NightDiv').hide();
// Display the div on mobile resoultions
if (jQuery(window).width() < 700) {
jQuery('#NightDiv').show();
}
});
ShowDiv();
$(window).resize(function() {
ShowDiv();
});
function ShowDiv(){
if (window.innerWidth>=1024 )
$("#NightDiv").hide();
else
$("#NightDiv").show();
}
<script src="https://ajax.googleapis./ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="NightDiv" class="w3-center" style="padding-top:20px;width:200px;height:100px;background-color:pink;"><i id="nightMode2" class="fa fa-moon-o fa-lightbulb-o w3-cursor-pointer w3-amazon" aria-hidden="true"></i>
</div>
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1744934916a4601962.html
评论列表(0条)