`
cakin24
  • 浏览: 1386349 次
  • 性别: Icon_minigender_1
  • 来自: 西安
社区版块
存档分类
最新评论

Window moveTo() 方法

阅读更多

定义和用法

moveTo() 方法可把窗口的左上角移动到一个指定的坐标。

语法

window.moveTo(x,y)

实例

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="gb2312">
  5. <title>moveTo</title>
  6. <script>
  7. var myWindow;
  8. function openWin(){
  9. myWindow=window.open('','','width=200,height=100');
  10. myWindow.document.write("<p>这是我的窗口</p>");
  11. }
  12. function moveWin(){
  13. myWindow.moveTo(54,100);
  14. myWindow.focus();
  15. }
  16. </script>
  17. </head>
  18. <body>
  19. <input type="button" value="打开窗口" onclick="openWin()"/>
  20. <br><br>
  21. <input type="button" value="移动窗口" onclick="moveWin()"/>
  22. </body>
  23. </html>

运行效果



 
  • 大小: 25.5 KB
1
0
分享到:
评论

相关推荐

    jQuery侧边圣诞老人滑动面板.zip

     // FF seems to just be able to handle like 50... 25 with rotation  // Safari seems fine with 150 ... 75 with rotation  var i = 50;  while (i--) {  addFlake(true);  }  prevTime = new ...

    Pixi.js动画插件pixi-action.zip

    var animation = PIXI.actionManager.runAction(cat, action_moveto); // 执行动画 animation.on('end', function(elapsed) {  console.log('action end.'); }); function animate() {  window....

    html5 canvas打碎的图片玻璃碎片特效

    使用`context.beginPath()`开始路径,然后通过`context.moveTo()`和`context.lineTo()`定义路径的顶点,最后用`context.closePath()`闭合路径。接着,我们可以为每个碎片路径定义不同的透明度、颜色或渐变,以增加...

    html5 sonic.js创建canvas画布页面正在加载图标

    开发者可以通过调用Canvas API的方法,如`fillRect()`、`strokeRect()`、`beginPath()`、`moveTo()`、`lineTo()`等,来绘制线条、形状、图像甚至复杂的动画。Sonic.js则是对这些基础API的封装,提供了更加便捷的方式...

    html5 canvas绘制时钟表时间效果源码下载

    ctx.moveTo(200, 200); ctx.lineTo(x, y); ctx.stroke(); if (i % 5 === 0) { // 大刻度 ctx.font = '14px Arial'; ctx.fillText((i / 5).toString(), x, y - 10); } } // 绘制时针、分针和秒针 const ...

    html5 canvas简单的饼状图动画效果

    ctx.moveTo(x, y); ctx.arc(x, y, radius, 0, Math.PI * 2 * angle, false); ctx.lineTo(x, y); ctx.fill(); if (endAngle) { requestAnimationFrame(() =&gt; drawSlice(ctx, angle + 0.01, x, y, radius, ...

    html5 canvas绘制孙悟空猴哥来拜年特效

    此外,为了增强猴哥的拜年效果,可以使用Canvas的其他API,如`beginPath()`、`moveTo()`、`lineTo()`等绘制线条,创建烟花、云彩等元素;使用`fillStyle`、`strokeStyle`改变颜色;使用`rotate()`、`scale()`、`...

    Python 2.6 Graphics Cookbook.pdf

    Complete animation using draw-move-pause-erase cycles 62 More than one moving object 63 A ball that bounces 65 Bouncing in a gravity field 67 Precise collisions using floating point numbers 70 ...

    易语言-易语言目前最快的JSON解析 simdjson

    1. 封装了几个自定义的函数, 例如 move_to_root, array_get_length, array_move_to_index, 这样可以少调用一些 X64Call; 2. 简单实现了对于类似 [0].A.B[0].C 的路径的解析取值. 接下来说一下遇到的问题和一些体验: ...

Global site tag (gtag.js) - Google Analytics