美文网首页
window对象相关

window对象相关

作者: 湘兰沅芷 | 来源:发表于2023-12-27 14:40 被阅读0次

    媒体查询

        const x = window.matchMedia("(max-width: 400px)");
      
        function myFunction (x) {
          if (x.matches) {
            document.body.style.backgroundColor = 'red'
          } else {
            document.body.style.backgroundColor = 'blue'
          }
        }
        
        myFunction(x)
        x.addListener(myFunction);
    

    相关文章

      网友评论

          本文标题:window对象相关

          本文链接:https://www.haomeiwen.com/subject/yzirndtx.html