HTML Window moveBy() পদ্ধতিটি তার বর্তমান স্থানাঙ্কের সাপেক্ষে উইন্ডোটিকে স্থানান্তরিত করে।
সিনট্যাক্স
নিম্নলিখিত সিনট্যাক্স −
window.moveBy(x,y)
এখানে, x এবং y যথাক্রমে পিক্সেলে অনুভূমিকভাবে এবং উল্লম্বভাবে উইন্ডোটি সরানোর মান নির্ধারণ করে।
আসুন HTML Window moveBy() Method −
-এর একটি উদাহরণ দেখিউদাহরণ
<!DOCTYPE html> <html> <style> body { color: #000; height: 100vh; background-color: #8BC6EC; background-image: linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%) no-repeat; text-align: center; } .btn { background: #db133a; border: none; height: 2rem; border-radius: 2px; width: 40%; display: block; color: #fff; outline: none; cursor: pointer; margin: 1rem auto; } </style> <body> <h1>HTML Window moveBy() Method Demo</h1> <button onclick="create()" class="btn">Create new window and then move it</button> <script> function create(){ var newWindow =window.open('','','width=150,height=150'); newWindow.moveBy(550, 200); } </script> </body> </html>
আউটপুট
“নতুন উইন্ডো তৈরি করুন এবং তারপরে এটি সরান-এ ক্লিক করুন ” বোতামটি একটি নতুন উইন্ডো তৈরি করতে এবং তারপর মুভবাই() পদ্ধতি ব্যবহার করে সরান: