jquery, add/remove class when window width changes

前端 未结 7 1209
予麋鹿
予麋鹿 2020-11-27 13:26

I\'ve written out a very basic script to add/remove a class on load or when a window is resized.

I was just wondering if there was a better way of doing this or if i

7条回答
  •  野趣味
    野趣味 (楼主)
    2020-11-27 13:44

    Use Media classes

    @media screen and (max-width: 900px) {
      .class {
        width:800px;
    
      }
    }
    
    @media screen and (max-width: 500px) {
          .class {
            width:450px;
    
      }
    }
    

提交回复
热议问题