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


p5.js mouseDragged()用法及代码示例


p5.js 中的 mouseDragged() 函数用于检查鼠标拖动(鼠标移动和鼠标按钮按下)。每次鼠标拖动时都会调用它。如果未定义mouseDragged()函数,则将使用touchMoved()函数代替mouseDragged()函数。

用法:

mouseDragged(Event)

以下示例程序旨在说明 p5.js 中的 mouseDragged() 函数:

示例 1:本例使用mouseDragged()函数来更改背景颜色。


function setup() { 
  
    // Create Canvas 
    createCanvas(500, 500); 
} 
   
let value = 0; 
  
function draw() { 
      
    // Set background color 
    background(200); 
      
    // Set filled color 
    fill(value); 
      
    // Create rectangle 
    rect(25, 25, 460, 440); 
      
    // Set text color 
    fill('lightgreen'); 
      
    // Set font size 
    textSize(15); 
      
    // Display result 
    text('Drag Mouse Across the page to change its value.', 
        windowHeight/6, windowWidth/4); 
} 
  
function mouseDragged() { 
    value = value + 5; 
      
    if (value > 255) { 
        value = 0; 
    } 
} 

输出:

示例 2:本例使用mouseDragged()函数更改鼠标光标圆圈颜色。


let value; 
  
function setup() { 
      
    // Create Canvas 
    createCanvas(500, 500); 
} 
   
function draw() { 
      
    // Set background color 
    background(200);  
      
    // Set filled color 
    fill('green'); 
      
    // Set text and text size 
    textSize(25); 
      
    text('Drag mouse to change color', 30, 30); 
      
    // Fill color according to 
    // mouseMoved() function 
    fill(value, 255-value, 255-value); 
      
    // Draw ellipse   
    ellipse(mouseX, mouseY, 115, 115); 
} 
  
function mouseDragged() { 
    value = mouseX%255; 
} 

输出:

参考: https://p5js.org/reference/#/p5/mouseDragged



相关用法


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