


How to use the copy function implemented by Zero Clipboard js swf_Basic knowledge
The copy function is often used in development, and it is relatively simple to implement under IE. But it is more difficult to achieve cross-browser. This article will introduce a cross-browser library class Zero Clipboard. It uses Flash for copying, so it can run as long as the browser has Flash installed, and is more flexible than IE's document.execCommand("Copy").
The implementation principle of Zero Clipboard
Zero Clipboard uses Flash to copy. There was a previous Clipboard Copy solution, which used a hidden Flash. But the latest Flash Player 10 only allows operations on Flash to activate the clipboard. So Zero Clipboard improved this and used a transparent Flash to float above the button. In this way, what is actually clicked is not the button but the Flash, and the copy function of Flash can be used.
How to use Zero Clipboard
First download Zero Clipboard and unzip it. Two files are required: ZeroClipboard.js and ZeroClipboard.swf. Put these two files into your project.
Download address
Zero Clipboard open source JavaScript flash copy library class
Demo address:
http://demo.jb51.net /js/ZeroClipboard/index.html
Core Functions
The first step is to import the ZeroClipboard.js file:
Set the path of the ZeroClipboard.swf file:
ZeroClipboard.setMoviePath( "ZeroClipboard.swf" );
Note: The paths of the above two files, ZeroClipboard.js and ZeroClipboard.swf, need to be replaced with the paths of the corresponding files in your project. Or it can be an absolute path.
Then use:
var clip = new ZeroClipboard.Client(); // Create a new object
clip.setHandCursor( true ); // Set the mouse to hand type
clip.setText("Haha"); / / Sets the text to be copied.
// Register a button, the parameter is id. Clicking this button will copy it.
//This button does not necessarily need to be an input button, it can also be other DOM elements.
clip.glue("copy-botton"); // The position cannot be interchanged with the previous sentence
In this way, the basic function is realized, and the set text can be copied by clicking the button. You may have noticed that the text to be copied is fixed. What if you want to change it dynamically, such as copying the content in an input box. Don’t worry, we’ll cover that below.
Other functions
Zero Clipboard also provides some other functions, some of which are very useful.
reposition() method
Because there is a Flash button floating on the button, when the page size changes, the Flash button may be misplaced and cannot be clicked. It doesn't matter, Zero Clipboard provides a reposition() method that can recalculate the position of the Flash button. We can bind it to the resize event.
bind(window, "resize", function(){
clip.reposition();
});
bind is a cross-browser event binding function.
================================================== ==========
Everyone must know this. The event binding function of IE is attachEvent; while Firefox and Safari are addEventListener; Opera supports both. Encapsulation is done below.
/************************************
* Add event binding
* @param obj: The element to which the event will be bound
* @param type: event name. Do not add "on". For example: "click" instead of "onclick".
* @param fn: event handling function
********************** *****************/
function bind( obj, type, fn ) {
if ( obj.attachEvent ) {
obj['e' type fn] = fn;
obj[type fn] = function(){obj['e ' type fn]( window.event );}
obj.attachEvent( 'on' type, obj[type fn] );
} else
obj.addEventListener( type, fn, false );
}
For example, add a page click event:
bind(document, "click", function() {
alert("Hello, World!!");
});
================================================== ==========
hide() and show() methods
These two methods can hide and show Flash buttons. The show() method calls the reposition() method.
setCSSEffects() method
When the mouse moves over or clicks on the button, pseudo-classes such as css ":hover", ":active" and other pseudo-classes may become invalid due to the obstruction of the Flash button. The setCSSEffects() method solves this problem. First we need to change the pseudo-class to a class, for example:
#copy-botton:hover{
border-color:#FF6633;
}
// Can be changed to the following ":hover" to ".hover"
#copy-botton.hover {
border-color:#FF6633;
}
We can call clip.setCSSEffects( true ); so that Zero Clipboard will automatically handle it for us: treat class.hover as a pseudo class :hover.
getHTML() method
If you want to instantiate Flash yourself without using the Zero Clipboard attachment method, then this method can help. It accepts two parameters, the width and height of the Flash. What is returned is the HTML code corresponding to Flash. For example:
var html = clip.getHTML( 150, 20 );
You can use innerHTML or document.write(); directly for output.
The following is the HTML code output under my test:
There is a bug in IE's Flash JavaScript communication interface. You must insert an object tag into an existing DOM element. And before writing innerHTML, make sure that the element has been inserted into the DOM using the appendChild method.
Zero Clipboard event handling
Zero Clipboard provides some events, and you can customize functions to handle these events. The Zero Clipboard event handling function is addEventListener(); for example, an event "load" will be triggered when Flash is completely loaded.
clip.addEventListener( "load", function(client) {
alert("Flash loaded!");
});
Zero Clipboard will pass the clip object as a parameter enter. That is "client" in the above example.
Also "load" can also be written as "onLoad", and other events can also be written like this.
Other events include:
mouseOver mouse up event
mouseOut mouse out event
mouseDown mouse down event
mouseUp mouse up event
complete Copy Success events
Among them, mouseOver event and complete event are more commonly used.
As mentioned before, if you need to dynamically change the content to be copied, the mouseOver event can come in handy. For example, if we need to dynamically copy the value in an input box with the id of test, we can reset the value when the mouse is over.
clip.addEventListener( "mouseOver", function(client) {
var test = document.getElementById("test");
client.setText( test.value ); // Reset Value to copy
});
Copy successfully:
clip.addEventListener( "complete", function(){
alert("Copy successfully!");
} );
Okay, let’s introduce it here. Try it out yourself now.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

We users should be able to understand the diversity of some functions when using this platform. We know that the lyrics of some songs are very well written. Sometimes we even listen to it several times and feel that the meaning is very profound. So if we want to understand the meaning of it, we want to copy it directly and use it as copywriting. However, if we want to use it, we still need to You just need to learn how to copy lyrics. I believe that everyone is familiar with these operations, but it is indeed a bit difficult to operate on a mobile phone. So in order to give you a better understanding, today the editor is here to help you. A good explanation of some of the above operating experiences. If you also like it, come and take a look with the editor. Don’t miss it.

The shortcut key for copying is "Ctrl+c", and the corresponding paste key is "Ctrl+v"; on the computer, use the mouse to drag and select text, hold down Ctrl, and then click the C key to complete the copy; A shortcut key refers to completing an operation through certain specific keys, key sequences, or key combinations.

In the PS copy layer shortcut keys, we can know that if you want to copy a layer when using PS, you can use the shortcut key [Ctrl+J] for quick copying. This introduction to the shortcut keys for copying layers can tell you the specific operation method. The following is the detailed content, so take a look. PS copy layer shortcut key answer: [Ctrl+J] Specific method: 1. Open the image in PS and select the layer that needs to be copied. 2. Press [Ctrl+J] on the keyboard at the same time to complete the copy of the layer. Other copying methods: 1. After opening the image, press and hold the layer and move the [New Layer] icon downwards. 2. After moving to the icon, let go. 3. The layer copy is completed.

When many users use computers, if they encounter something that needs to be copied and pasted, it is very troublesome to copy with the mouse. So how to use the shortcut keys for copy and paste? Come and take a look at the detailed tutorial ~ Copy and paste shortcuts How to use the key: 1. Copy key: Ctrl+C, select the text or image to be copied, and press the shortcut key. 2. Paste key: Ctrl+V. Just press the shortcut key directly where you want to paste.

We often use Excel to process multiple table data. After copying and pasting the set table, the original format returns to the default, and we have to reset it. In fact, there is a way to make the Excel copy table retain the original format. The editor will explain the specific method to you below. 1. Ctrl key dragging and copying operation steps: Use the shortcut key [Ctrl+A] to select all table contents, then move the mouse cursor to the edge of the table until the moving cursor appears. Press and hold the [Ctrl] key, and then drag the table to the desired position to complete the movement. It should be noted that this method only works on a single worksheet and cannot be moved between different worksheets. 2. Steps for selective pasting: Press the [Ctrl+A] shortcut key to select all tables, and press

Vue is a popular JavaScript framework that provides a convenient drag-and-drop function, allowing us to easily copy and move elements. Next, let's take a look at how to copy and move drag-and-drop elements in Vue. 1. Basic implementation of drag-and-drop elements To copy and move drag-and-drop elements in Vue, you first need to implement the basic drag-and-drop function of the element. The specific implementation method is as follows: Add the elements that need to be dragged in the template: <divclass="drag-elem"

On Windows, the shortcut key for copying is Ctrl C; on Apple, the shortcut key for copying is Command C; on Linux, the shortcut key for copying is Ctrl Shift C. Knowing these shortcut keys can improve the user's work efficiency and facilitate text or file copy operations.

1. Cutting refers to the operation of moving selected content from one position to another. 2. The copy operation creates a copy of the selected content and saves the copy in the system clipboard, and the original content will remain in its original location. 3. If the user wants to move the content to another location and delete the content in the original location, they can use the cut operation. 4. If the user needs to create a copy of the content and paste it elsewhere without affecting the original content, then use the copy operation.
