Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/javascript/434.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript 为什么使用鼠标中键单击暂停间隔事件进行滚动?_Javascript_Google Chrome_Canvas - Fatal编程技术网

Javascript 为什么使用鼠标中键单击暂停间隔事件进行滚动?

Javascript 为什么使用鼠标中键单击暂停间隔事件进行滚动?,javascript,google-chrome,canvas,Javascript,Google Chrome,Canvas,我在网页上创建了一个视差背景动画,它使用画布。它使用setInterval循环,每20毫秒渲染一帧 在尝试这种设计时,我注意到如果我使用鼠标中键技术滚动,动画会暂停。为什么会这样?它仅适用于画布,还是适用于所有间隔事件 此外,有没有办法抑制这种情况? 我正在Windows 10上运行Chrome 74.0.3729.131 以下是@kaido要求的代码: function parallaxCipher(size, color, speed, grid, sector, seed){ //Para

我在网页上创建了一个视差背景动画,它使用画布。它使用setInterval循环,每20毫秒渲染一帧

在尝试这种设计时,我注意到如果我使用鼠标中键技术滚动,动画会暂停。为什么会这样?它仅适用于画布,还是适用于所有间隔事件

此外,有没有办法抑制这种情况?

我正在Windows 10上运行Chrome 74.0.3729.131

以下是@kaido要求的代码:

function parallaxCipher(size, color, speed, grid, sector, seed){ //Parallax function
  scr = document.getElementById("parallax" + sector); //The canvasses are named "parallax" + ID
  ctx = scr.getContext("2d");
  ctx.fillStyle = "#000";
  ctx.fillRect(0,0,scr.width,scr.height); //Turn area black
  var xGridMax = Math.ceil(scr.width / grid);
  var yGridMax = Math.ceil(scr.height / grid) + 1;
  var seedList = prng(seed,yGridMax * 2); //Simple PRNG
  for(var c = 0; c < yGridMax;c++){
    seedList[c] += seedList[c + yGridMax] * 256;
  }
  seedList.length = yGridMax;
  var rotation = Math.floor(Math.floor(Date.now() / speed) / grid) % yGridMax;
  rotation = yGridMax - rotation - 1; //It's a mess. I know.
  if(rotation > 0){
    seedList = seedList.slice(seedList.length-rotation).concat(seedList.slice(0,seedList.length - rotation));
  }
  ctx.fillStyle = color;
  for(var a = 0;a<yGridMax;a++){
    var row = prng(seedList[a],Math.ceil((xGridMax + 1)/8));
    var row2 = [];
    for(var d = 0;d<row.length;d++){
      row[d] = row[d].toString(2);
      row[d] = "0".repeat(8 - row[d].length) + row[d];
      row2 = row2.concat(row[d].split(''));
    }
    row2.length = xGridMax + 1;
    var rotation2 = Math.floor(Math.floor(Date.now() / speed) / grid) % xGridMax;
    if(rotation2 > 0){
      row2 = row2.slice(row2.length-rotation2).concat(row2.slice(0,row2.length - rotation2));
    }

    for(var b = -1;b<xGridMax;b++){
      ctx.font = size + "px monospace";
      ctx.fillText(row2[b + 1],(b * grid) - (size * 11 / 30) + ((Date.now() / speed) % grid),(a * grid) + (size / 2) - ((Date.now() / speed) % grid));

    }
  }
}
function prng(seed, instances){
  //PRNG takes a 16 bit seed
  var primes = [2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97,101,103,107,109,113,127,131,137,139,149,151,157,163,167,173,179,181,191,193,197,199,211,223,227,229,233,239,241,251,263,269,271,277,281,283,293,307,311,313,317,331,337,347,349,353,359,367,373,379,383,389,397,401,409,419,421,431,433,439,443,449,457,461,463,467,479,487,491,499,503,509,521,523,541,547,557,563,569,571,577,587,593,599,601,607,613,617,619,631,641,643,647,653,659,661,673,677,683,691,701,709,719,727,733,739,743,751,757,761,769,773,787,797,809,811,821,823,827,829,839,853,857,859,863,877,881,883,887,907,911,919,929,937,941,947,953,967,971,977,983,991,997,1009,1013,1019,1021,1031,1033,1039,1049,1051,1061,1063,1069,1087,1091,1093,1097,1103,1109,1117,1123,1129,1151,1153,1163,1171,1181,1187,1193,1201,1213,1217,1223,1229,1231,1237,1249,1259,1277,1279,1283,1289,1291,1297,1301,1303,1307,1319,1321,1327,1361,1367,1373,1381,1399,1409,1423,1427,1429,1433,1439,1447,1451,1453,1459,1471,1481,1483,1487,1489,1493,1499,1511,1523,1531,1543,1549,1553,1559,1567,1571,1579,1583,1597,1601,1607,1609,1613,1619,1621,1627];
  var res = [];
  var j = seed % 256;
  var k = Math.floor(seed / 256);
  for(var a = 0;a < instances;a++){
    res.push(((primes[j] * primes[k]) % 257) - 1);
    if(primes.includes(res[res.length - 1]) || primes.includes(res[res.length - 1] + 1)){
      j = (j + 1) % 257;
    }else{
      k = (k - 1);
      if(k == -1){
        k = 256;
      }
    }
    if(res[res.length - 1] == undefined){
      console.warn("PRNG error: "  + j + ", " + k + ", " + primes[j] + ", " + primes[k]);
    }
  }
  return res;
}

创建ID为“parallax1”的画布后,

requestAnimationFrame
不会遇到此类冻结问题

基本用法

function animation(ms) {
    // you can use `ms` to make animations smoother
    // while this function should be called every 16.66ms, (60fps),
    // the `ms` argument is a Number, unit is milliseconds and should be accurate to 5 µs (microseconds)
    //
    // ... all your fancy animation 
    requestAnimationFrame(animation);
}
requestAnimationFrame(animation); // or just animation(), however this way ALL animation is "sync'd" to 60fps including the first frame

也许你做错了什么™ - 如果问题中根本没有任何代码,很可能是你,这显然是代码,如果你想让我们帮助你调试,你必须包含所有相关的部分,以便在问题本身内部进行分析。嗯,鼠标中键滚动不会阻止我的页面中出现动画-所以,是的,链接到一些代码,这些代码说明了问题的严重性,但是对于一开始来说,
setInterval(fn,20)
已经出了问题™.好的,我将收集一个代码@kaidoaccessed的可展示的示例,不幸的是,我缺乏给出+1的声誉。
function animation(ms) {
    // you can use `ms` to make animations smoother
    // while this function should be called every 16.66ms, (60fps),
    // the `ms` argument is a Number, unit is milliseconds and should be accurate to 5 µs (microseconds)
    //
    // ... all your fancy animation 
    requestAnimationFrame(animation);
}
requestAnimationFrame(animation); // or just animation(), however this way ALL animation is "sync'd" to 60fps including the first frame