美文网首页
移动端监听横屏竖屏

移动端监听横屏竖屏

作者: 丸子_d7e2 | 来源:发表于2019-07-15 18:05 被阅读0次
window.addEventListener(
    'onorientationchange' in window ? 'orientationchange' : 'resize',
        that.getScreenStatus,
        false
      );
if (this.orientation === 180 || this.orientation === 0) {
  if (this.direction === 'horizontal') {
      this.$refs.coursePreview.className = 'progess-MinHeight';
      this.$refs.progressCicle.style.left = this.$refs.progressBar.style.width;
        }
      }
      //判断横屏
if (this.orientation === 90 || this.orientation === -90) {
    if (this.direction === 'horizontal') {
      this.$refs.coursePreview.style.height =
          document.getElementsByClassName('img_c1')[0].style.height + 'px';
          this.$refs.progressCicle.style.left = this.$refs.progressBar.style.width;
      }
}

相关文章

网友评论

      本文标题:移动端监听横屏竖屏

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