mirror of
				https://gitee.com/la-vie/console-pro-free.git
				synced 2025-11-04 05:17:57 +00:00 
			
		
		
		
	first commit
This commit is contained in:
		
							
								
								
									
										37
									
								
								console-pro/node_modules/clipboard/demo/function-target.html
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										37
									
								
								console-pro/node_modules/clipboard/demo/function-target.html
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,37 @@
 | 
			
		||||
<!DOCTYPE html>
 | 
			
		||||
<html lang="en">
 | 
			
		||||
  <head>
 | 
			
		||||
    <meta charset="UTF-8" />
 | 
			
		||||
    <title>function-target</title>
 | 
			
		||||
    <meta name="viewport" content="width=device-width, initial-scale=1" />
 | 
			
		||||
  </head>
 | 
			
		||||
  <body>
 | 
			
		||||
    <!-- 1. Define some markup -->
 | 
			
		||||
    <button class="btn">Copy</button>
 | 
			
		||||
    <div>hello</div>
 | 
			
		||||
 | 
			
		||||
    <!-- 2. Include library -->
 | 
			
		||||
    <script src="../dist/clipboard.min.js"></script>
 | 
			
		||||
 | 
			
		||||
    <!-- 3. Instantiate clipboard -->
 | 
			
		||||
    <script>
 | 
			
		||||
      var clipboard = new ClipboardJS('.btn', {
 | 
			
		||||
        target: function () {
 | 
			
		||||
          return document.querySelector('div');
 | 
			
		||||
        },
 | 
			
		||||
      });
 | 
			
		||||
 | 
			
		||||
      clipboard.on('success', function (e) {
 | 
			
		||||
        console.info('Action:', e.action);
 | 
			
		||||
        console.info('Text:', e.text);
 | 
			
		||||
        console.info('Trigger:', e.trigger);
 | 
			
		||||
      });
 | 
			
		||||
 | 
			
		||||
      clipboard.on('error', function (e) {
 | 
			
		||||
        console.info('Action:', e.action);
 | 
			
		||||
        console.info('Text:', e.text);
 | 
			
		||||
        console.info('Trigger:', e.trigger);
 | 
			
		||||
      });
 | 
			
		||||
    </script>
 | 
			
		||||
  </body>
 | 
			
		||||
</html>
 | 
			
		||||
		Reference in New Issue
	
	Block a user