- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
嘿, friend 们,当页面为 1700 像素或更小时,我正在尝试使用 window.matchMedia("(max-width: 1700px)")
在 html 中添加一些元素。现在我只是想通过在屏幕上显示功能警报“哟”来测试它。这不像我试图改变的其他东西那样有效?有什么想法吗?
https://jsfiddle.net/yat5ncmk/6/
const ham = document.querySelector('.nav-box');
const menu = document.querySelector('.menu');
const menuClose = document.querySelector('#menu-close');
const leftArrow = document.querySelector('#left');
const rightArrow = document.querySelector('#right');
const img = document.querySelector('.image-slider');
var x = window.matchMedia("(max-width: 1700px)");
let num = 1;
x.addEventListener(adjustMenuDesign);
adjustMenuDesign(x);
ham.addEventListener('click', function() {
ham.classList.add('ham-open');
menu.style.marginLeft = '50px';
})
menuClose.addEventListener('click', function() {
ham.classList.remove('ham-open');
menu.style.marginLeft = '-700px';
})
leftArrow.addEventListener('click', function() {
num--;
if(num > 0) {
img.style.backgroundImage = 'url(img/fam-' + num + '.jpeg)';
console.log(num);
console.log(img.style.backgroundImage);
} else {
num = 4;
img.style.backgroundImage = 'url(img/fam-' + num + '.jpeg)';
}
})
rightArrow.addEventListener('click', function() {
num++;
if(num <= 4) {
img.style.backgroundImage = 'url(img/fam-' + num + '.jpeg)';
console.log(num);
console.log(img.style.backgroundImage);
} else {
num = 1;
img.style.backgroundImage = 'url(img/fam-' + num + '.jpeg)';
}
})
function adjustMenuDesign(width) {
if (width.matches) { // If media query matches
alert('yo');
}
}
window.sr = ScrollReveal();
sr.reveal('.logo-wrap', {
duration: 2000
});
sr.reveal('.w1', {
duration: 2000,
origin: 'bottom'
});
sr.reveal('.w2', {
duration: 3000,
origin: 'bottom'
});
sr.reveal('.w3', {
duration: 4000,
origin: 'bottom'
});
sr.reveal('.hours-line-left', {
duration: 1000,
origin: 'left',
distance: '200px'
});
sr.reveal('.hours-line-right', {
duration: 1000,
origin: 'right',
distance: '200px'
});
sr.reveal('.contact-line', {
duration: 1000,
origin: 'bottom',
distance: '250px'
});
sr.reveal('.burrito', {
duration: 1000,
origin: 'right',
distance: '250px'
});
sr.reveal('.taco', {
duration: 1000,
origin: 'right',
distance: '250px'
});
sr.reveal('.guac', {
duration: 1000,
origin: 'right',
distance: '250px'
});
sr.reveal('.nachos', {
duration: 1000,
origin: 'bottom',
distance: '250px'
});
sr.reveal('.hot', {
duration: 1000,
origin: 'left',
distance: '250px'
});
sr.reveal('.back-to-top', {
duration: 1000,
origin: 'bottom',
});
sr.reveal('.btp-arrow', {
duration: 1500,
origin: 'top',
distance: '250px'
});
最佳答案
几个问题..
x.addEventListener(adjustMenuDesign);
错误,因为 addEventListener 需要一个事件和一个回调。但是您可能想做的是将其添加到调整大小事件中。
window.addEventListener("resize", adjustMenuDesign);
此外,您还需要在调整大小时再次运行 matchMedia
查询,因此将那段代码移至 adjustMenuDesign 在这里是有意义的。
下面是这些变化的工作 fiddle 。
关于javascript - 窗口.matchMedia ("(max-width: 1700px)");不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56265514/
我正在尝试在移动设备上使用一个函数(本例中小于 700px),并在大型设备上使用另一个函数。我按以下方式使用 matchMedia: var mql = window.matchMedia("(min
在构建页面时,我理解当浏览器重新计算页面上所有元素的尺寸和位置时,尽量减少“布局抖动”或“reflow”是一种很好的做法。 Paul Irish 制作了一个 handy list触发回流的过程。他说:
我想使用matchmedia.addlistener要检查窗口大小,我的按钮事件如下所示 $('button').click(function(){ if(this.attr('aria-ex
我认为 IE9 不支持 matchMedia,但媒体查询支持。 我可能忽略了这一点,但是当您只需将以下代码添加到样式表中时为什么要使用 matchMedia .desktop_view{display
有一个包含这些规则的 CSS 文件: @media screen and (orientation:portrait) { .foo {} } @media screen and (orienta
我创建了这个函数来处理我的移动导航的切换。 const mobileNav = document.getElementById('mobile-nav'); let tabs = document.g
我在组件中使用 React 上下文 API 挂载以设置方法。我还想在那里使用媒体查询并设置一种方法来根据屏幕尺寸打开或关闭 sidenav。 像这样 componentDidMount() {
我正在使用 window.matchMedia(),当达到 max 或 min width 时,我似乎无法获得应用辅助类的功能。我通过简单的字体大小更改重新创建了下面的问题。 我已经阅读了有关 mat
这段代码在两个媒体查询上工作得很好,还有一些 jQuery 的附加操作。但是我需要刷新页面才能使两个媒体查询之一起作用。 jquery 的作用是在媒体查询中添加两个div 以获得两列网格(左侧所有图片
window.matchMedia 正在运行,但我认为它会像使用“@media only screen”一样工作,并且在屏幕变窄时会发生这种情况。例如,如果您使用的是桌面浏览器,则必须使用 windo
polyfill 如何以及为什么可以工作? w.matchMedia = w.matchMedia || (function( doc, undefined ) { var bool,
我正在尝试针对 >=768px 的视口(viewport)触发我的 fancybox,并针对 <768px 的视口(viewport)触发我的 swipebox。不幸的是现在都没有打开......我错
我正在尝试使用 matchMedia/mediaQuery Web Api - 我可以成功添加监听器,但无法删除监听器。 我错过了什么? 这code demonstrates问题 - 尝试打印页面 -
我让 TweenLite 根据 matchMedia 大小将我的 startTrigger 设置为 x 像素。我希望这个 matchMedia 在浏览器调整大小时触发,所以我添加了一个事件监听器。它无
我正在尝试编写一些 javascript,它会在某些浏览器断点处更改 JS 配置对象中保存的一些值。 我已将 window.matchmedia 测试存储在配置对象中,然后循环遍历该对象的键以向每个测
我已经为这个问题寻找了无数的解决方案,但没有一个解决了我的问题。我非常简单地有一个导航栏,当在移动浏览器上时,它会消失并替换为一个按钮,其功能是显示和隐藏导航栏。 现在,我希望我的听众在窗口缩小时显示
很难理解它实际上是如何工作的。代码按预期工作,但由于某种原因,当调整窗口大小并触发新函数时,旧函数仍然在触发,所以一团糟。 :-/ 我确信有更好的方法来写这个。我只希望“isMobile”在 max-
我的代码很平静: const mql = window.matchMedia('(min-width: 400px)'); mql.addListener(e => { if (e.matc
我正在尝试添加这个: var mql = window.matchMedia("(max-width: 480px)"), window.matchMedia("(max-height: 479px)
我正在构建一个插件,为了打开/关闭某些行为,我正在使用 matchMedia 函数。但是在回调函数中,我需要传递一个参数来保留对此的正确引用。但是,当我尝试将参数传递给我的回调函数时,它说我的整个 a
我是一名优秀的程序员,十分优秀!