Как изменить размер кругов, если размер экрана изменился? - PullRequest
0 голосов
/ 03 апреля 2020

Я увидел код на inte rnet, и я пытался изменить размер круга в соответствии с размером экрана, я пытался поместить весь код JS в оператор if и функцию, которую я видел в веб-сайт, он работал, но он должен обновить sh страницу после масштабирования, так можно ли изменить размер кругов с изменением размера экрана? Я получил код от: https://codepen.io/Yago/pen/WNbxjYw

/**
 * index.js
 * - All our useful JS goes here, awesome!
 Maruf-Al Bashir Reza
 */


function myFunction(x) {
  if (x.matches) { // If media query matches
    
      $(document).ready(function($) {
  function animateElements() {
    $('.progressbar').each(function() {
      var elementPos = $(this).offset().top;
      var topOfWindow = $(window).scrollTop();
      var percent = $(this).find('.circle').attr('data-percent');
      var percentage = parseInt(percent, 10) / parseInt(100, 10);
      var animate = $(this).data('animate');
      if (elementPos < topOfWindow + $(window).height() - 30 && !animate) {
        $(this).data('animate', true);
        $(this).find('.circle').circleProgress({
          startAngle: -Math.PI / 2,
          value: percent / 100,
          thickness: 4,
          lincCape:'round',
          emptyFill:'#d4d4d4',
          fill: {
            color: '#1F88E9'
          },
            
          size:80
        })
      }
    });
  }

  // Show animated elements
  animateElements();
  $(window).scroll(animateElements);
});

  } else {
    
      $(document).ready(function($) {
    function animateElements() {
    $('.progressbar').each(function() {
      var elementPos = $(this).offset().top;
      var topOfWindow = $(window).scrollTop();
      var percent = $(this).find('.circle').attr('data-percent');
      var percentage = parseInt(percent, 10) / parseInt(100, 10);
      var animate = $(this).data('animate');
      if (elementPos < topOfWindow + $(window).height() - 30 && !animate) {
        $(this).data('animate', true);
        $(this).find('.circle').circleProgress({
          startAngle: -Math.PI / 2,
          value: percent / 100,
          thickness: 4,
          lincCape:'round',
          emptyFill:'#d4d4d4',
          fill: {
            color: '#1F88E9'
          },
            
          size:150
        })
      }
    });
  }

  // Show animated elements
  animateElements();
  $(window).scroll(animateElements);
});

  }
}

var x = window.matchMedia("(max-width: 700px)")
myFunction(x) // Call listener function at run time
x.addListener(myFunction)
/**
 * index.scss
 * - Add any styles you want here!
 */

body {
  background: #f5f5f5;
}

.progressbar {
  display: inline-block;
  width: 100px;
  margin: 25px;
}

.circle {
  width: 100%;
  margin: 0 auto;
  margin-top: 10px;
  display: inline-block;
  position: relative;
  text-align: center;
}

.circle canvas {
  vertical-align: middle;
}

.circle div {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
}

.circle strong i {
  font-style: normal;
  font-size: 0.6em;
  font-weight: normal;
}

.circle span {
  display: block;
  color: #aaa;
  margin-top: 12px;
}
<!DOCTYPE html>
<html lang="en">

<head>

  <!--  Meta  -->
  <meta charset="UTF-8" />
  <title>My New Pen!</title>

  <!--  Styles  -->
  <link rel="stylesheet" href="styles/index.processed.css">
</head>

<body>
  <h1 style="margin:auto;text-align:center;color:skyblue;">Circle Progressbar When Scroll</h1>
  <div style="width:100%;height:800px;">↓ Scroll down ↓</div>

  <h3>Title (Placeholder)</h3>

  <div class="progressbar" data-animate="false">
    <div class="circle" data-percent="100">
      <div></div>
      <p>Testing</p>
    </div>
  </div>
  <div class="progressbar" data-animate="false">
    <div class="circle" data-percent="30.5">
      <div></div>
      <p>Testing</p>
    </div>
  </div>
  <div class="progressbar" data-animate="false">
    <div class="circle" data-percent="77">
      <div></div>
      <p>Testing</p>
    </div>
  </div>
  <div class="progressbar" data-animate="false">
    <div class="circle" data-percent="49">
      <div></div>
      <p>Testing</p>
    </div>
  </div>
  <div style="width:100%;height:500px;"></div>
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
  <script src="https://rawgit.com/kottenator/jquery-circle-progress/1.2.1/dist/circle-progress.js"></script>
  <script src="scripts/index.js"></script>
</body>

</html>

Ответы [ 4 ]

1 голос
/ 03 апреля 2020

Я не буду концентрироваться на качестве, @mplungjan справился с качеством лучше, но ваша проблема в том, что вам нужно добавить обработчик событий изменения размера, а также аннулировать анимацию true, когда ваша анимация выполнена, чтобы условие могло выполняться снова чтобы изменить размер кругов, вы заметите, что при каждом изменении размера страницы это будет происходить заново.

/**
 * index.js
 * - All our useful JS goes here, awesome!
 Maruf-Al Bashir Reza
 */

function myFunction(x) {
  
  let size = 150;
  if (x.matches) {
    // If media query matches
    size = 80;
  }

    function animateElements() {
      $(".progressbar").each(function () {
        var elementPos = $(this).offset().top;
        var topOfWindow = $(window).scrollTop();
        var percent = $(this).find(".circle").attr("data-percent");
        var percentage = parseInt(percent, 10) / parseInt(100, 10);
        var animate = $(this).data("animate");
        if (elementPos < topOfWindow + $(window).height() - 30 && !animate) {
          $(this).data("animate", true);
          $(this)
            .find(".circle")
            .circleProgress({
              startAngle: -Math.PI / 2,
              value: percent / 100,
              thickness: 4,
              lincCape: "round",
              emptyFill: "#d4d4d4",
              fill: {
                color: "#1F88E9",
              },

              size: size,
            });
          $(this).data("animate", false);
        }
      });
    }

    // Show animated elements
    animateElements();
    $(window).scroll(animateElements);
}

var x = window.matchMedia("(max-width: 700px)");
myFunction(x);

$(window).on("resize", function (e) {
  var x = window.matchMedia("(max-width: 700px)");
  myFunction(x); // Call listener function at run time
});
/**
 * index.scss
 * - Add any styles you want here!
 */

body {
  background: #f5f5f5;
}

.progressbar {
  display: inline-block;
  width: 100px;
  margin: 25px;
}

.circle {
  width: 100%;
  margin: 0 auto;
  margin-top: 10px;
  display: inline-block;
  position: relative;
  text-align: center;
}

.circle canvas {
  vertical-align: middle;
}

.circle div {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
}

.circle strong i {
  font-style: normal;
  font-size: 0.6em;
  font-weight: normal;
}

.circle span {
  display: block;
  color: #aaa;
  margin-top: 12px;
}
<!DOCTYPE html>
<html lang="en">

<head>

  <!--  Meta  -->
  <meta charset="UTF-8" />
  <title>My New Pen!</title>

  <!--  Styles  -->
  <link rel="stylesheet" href="styles/index.processed.css">
</head>

<body>
  <h1 style="margin:auto;text-align:center;color:skyblue;">Circle Progressbar When Scroll</h1>
  <div style="width:100%;height:800px;">↓ Scroll down ↓</div>

  <h3>Title (Placeholder)</h3>

  <div class="progressbar" data-animate="false">
    <div class="circle" data-percent="100">
      <div></div>
      <p>Testing</p>
    </div>
  </div>
  <div class="progressbar" data-animate="false">
    <div class="circle" data-percent="30.5">
      <div></div>
      <p>Testing</p>
    </div>
  </div>
  <div class="progressbar" data-animate="false">
    <div class="circle" data-percent="77">
      <div></div>
      <p>Testing</p>
    </div>
  </div>
  <div class="progressbar" data-animate="false">
    <div class="circle" data-percent="49">
      <div></div>
      <p>Testing</p>
    </div>
  </div>
  <div style="width:100%;height:500px;"></div>
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
  <script src="https://rawgit.com/kottenator/jquery-circle-progress/1.2.1/dist/circle-progress.js"></script>
  <script src="scripts/index.js"></script>
</body>

</html>
1 голос
/ 03 апреля 2020

Варьируется размер:

Рабочий код:

function animateElements() {
  $('.progressbar').each(function() {
    var elementPos = $(this).offset().top;
    var topOfWindow = $(window).scrollTop();
    var percent = $(this).find('.circle').attr('data-percent');
    var percentage = parseInt(percent, 10) / parseInt(100, 10);
    var animate = $(this).data('animate');
    if (elementPos < topOfWindow + $(window).height() - 30 && !animate) {
      $(this).data('animate', true);
      $(this).find('.circle').circleProgress({
        startAngle: -Math.PI / 2,
        value: percent / 100,
        thickness: 4,
        lincCape: 'round',
        emptyFill: '#d4d4d4',
        fill: {
          color: '#1F88E9'
        },
        size: $(this).width() / 2
      })
      $(this).data("animate", false); // added this!
    }
  })
}

$(function() {
  // Show animated elements

  $(window).on("resize scroll", animateElements);
});
<h1 style="margin:auto;text-align:center;color:skyblue;">Circle Progressbar When Scroll</h1>
<div style="width:100%;height:800px;">↓ Scroll down ↓</div>

<h3>Title (Placeholder)</h3>

<div class="progressbar" data-animate="false">
  <div class="circle" data-percent="100">
    <div></div>
    <p>Testing</p>
  </div>
</div>
<div class="progressbar" data-animate="false">
  <div class="circle" data-percent="30.5">
    <div></div>
    <p>Testing</p>
  </div>
</div>
<div class="progressbar" data-animate="false">
  <div class="circle" data-percent="77">
    <div></div>
    <p>Testing</p>
  </div>
</div>
<div class="progressbar" data-animate="false">
  <div class="circle" data-percent="49">
    <div></div>
    <p>Testing</p>
  </div>
</div>
<div style="width:100%;height:500px;"></div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="https://rawgit.com/kottenator/jquery-circle-progress/1.2.1/dist/circle-progress.js"></script>
<script src="scripts/index.js"></script>
0 голосов
/ 03 апреля 2020

добавить это к вашему css

@media only screen and (max-width: 600px) {
  .circle {
    width: 50%;
  }
}
0 голосов
/ 03 апреля 2020

Вы можете добавить eventListener для "resize":

document.addEventListener("resize", handleResize);

и затем изменить размер в handleResize. Я не уверен, почему вы не используете CSS медиа-запросы вместо javascript.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...