当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


d3.js d3.shuffle()用法及代码示例


D3.js中的d3.shuffle()函数用于将给定数组元素的顺序随机化或随机排列,并返回数组。

用法:

d3.shuffle( Array, start, stop )

参数:此函数接受上述和以下所述的三个参数:


  • Array:此参数保存数组元素。
  • start:它代表要重新排列数组元素的数组的起始索引。它的起始值未指定,然后将零作为默认值。
  • stop:它表示数组的结束索引,以随机排列数组元素。它的默认值是数组的长度。

返回值:它返回随机元素数组。

以下程序说明了D3.js中的d3.shuffle()函数:

示例1:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>d3.shuffle() Function</title> 
      
    <script src='https://d3js.org/d3.v4.min.js'></script> 
</head> 
  
<body> 
    <script> 
       
        // Initialising some array of elements 
        Array1 = [1, 2, 3, 4]; 
        Array2 = [10, 20, 30, 40]; 
        Array3 = [5, 7, 9, 11]; 
        Array4 = [2, 4, 6, 8, 10]; 
           
        // Calling to d3.shuffle() function 
        A = d3.shuffle(Array1); 
        B = d3.shuffle(Array2, 1, 3); 
        C = d3.shuffle(Array3); 
        D = d3.shuffle(Array4, 2, 5); 
           
        // Getting the shuffled elements 
        document.write(A + "<br>"); 
        document.write(B + "<br>"); 
        document.write(C + "<br>"); 
        document.write(D + "<br>"); 
    </script> 
</body> 
  
</html>

输出:

2, 3, 1, 4
20, 40, 10, 30
11, 9, 5, 7
2, 10, 4, 8, 6

示例2:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>d3.shuffle() Function</title> 
      
    <script src='https://d3js.org/d3.v4.min.js'></script> 
</head> 
  
<body> 
    <script> 
       
        // Initialising some array of elements 
        Array1 = ["a", "b", "c"]; 
        Array2 = ["z", "y", "x"]; 
           
        // Calling to d3.shuffle() function 
        A = d3.shuffle(Array1); 
        B = d3.shuffle(Array2); 
           
        // Getting the shuffled elements 
        document.write(A + "<br>"); 
        document.write(B + "<br>"); 
    </script> 
</body> 
  
</html>

输出:

b, a, c
z, y, x

参考: https://devdocs.io/d3~5/d3-array#shuffle



相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 D3.js | d3.shuffle() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。