यह लौटाने के लिए कि स्थित तत्व का कौन सा भाग दिखाई दे रहा है, क्लिप का उपयोग करें जावास्क्रिप्ट में संपत्ति।
उदाहरण
छवि को क्लिप करने का तरीका जानने के लिए आप निम्न कोड चलाने का प्रयास कर सकते हैं -
<!DOCTYPE html> <html> <head> <style> img { position: absolute; top: 100px; } </style> </head> <body> <button type="button" onclick="display()">Clip</button><br> <img id="newImg" src="https://www.tutorialspoint.com/videotutorials/images/tutor_connect_home.jpg" width="170" height="150"> <script> function display() { document.getElementById("newImg").style.clip = "rect(10px 90px 90px 10px)"; } </script> </body> </html>