當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


p5.js drop()用法及代碼示例


drop()函數是一個內置函數,用於注冊一個回調函數,每次在加載文件後將文件拖放到元素上時都會調用該回調函數。每個刪除的文件都加載到內存中,並將其作為p5.File對象傳遞給回調函數。當同時刪除多個文件時,它將顯示對回調函數的多次調用。

此函數需要p5.dom庫。因此,在index.html文件的開頭部分添加以下行。

<script language="javascript" 
    type="text/javascript" src="path/to/p5.dom.js"> 
</script>

用法:


drop( callback, fxn )

參數:該函數接受上述和以下描述的兩個參數:

  • callback:此參數用於保存加載的文件,每次文件刪除都將調用該文件。
  • fxn:當使用drop事件刪除文件時觸發回調函數時使用此參數。

以下示例說明了p5.js中的drop()函數:

示例1:

function setup() {   
     
    // Create Canvas of given size  
     var cvs = createCanvas(400, 300); 
      
    // Set the background color 
    background('red'); 
    
    // Set the text position 
    textAlign(CENTER); 
      
    // Set the font size 
    textSize(24); 
      
    // Set the text color 
    fill('white'); 
      
    // Display the text on the screen 
    text('Drop file from device', width / 2, height / 2); 
      
    // Function to drop the file 
    cvs.drop(gotFile); 
} 
  
function gotFile(file) { 
    
  // Set the background color 
  background('green'); 
    
  // Display the text on the screen 
  text('Received file name with extension:', width / 2, height / 2); 
    
  // Drop file with given position 
  text(file.name, width / 2, height / 2 + 50); 
}

輸出:

  • 刪除文件之前:
    drop file function
  • 刪除文件後:
    drop file

示例2:

var img; 
  
function setup() {   
     
    // Create Canvas of given size  
     var cvs = createCanvas(600, 400); 
      
    // Set the background color 
    background('red'); 
    
    // Set the text position 
    textAlign(CENTER); 
      
    // Set the font size 
    textSize(24); 
      
    // Set the text color 
    fill('white'); 
      
    // Display the text on the screen 
    text('Drop file from device', width / 2, height / 2); 
      
    // Function to drop the file 
    cvs.drop(gotFile); 
} 
  
function draw() { 
  if (img) { 
    image(img, 0, 0, width, height); 
  } 
} 
  
function gotFile(file) { 
  img = createImg(file.data).hide(); 
}

輸出:

  • 刪除文件之前:
    drop file
  • 刪除文件後:
    drop file


相關用法


注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 p5.js | drop() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。