溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

如何使用JavaFx創(chuàng)建可拖動的Applet

發(fā)布時間:2021-07-14 09:36:31 來源:億速云 閱讀:214 作者:chen 欄目:web開發(fā)

本篇內(nèi)容主要講解“如何使用JavaFx創(chuàng)建可拖動的Applet”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學(xué)習(xí)“如何使用JavaFx創(chuàng)建可拖動的Applet”吧!

JavaFx運行時的下載地址:
http://javafx.com/downloads/all.jsp

我的appspot地址,打開即可看到示例:
http://sonicluo3.appspot.com/

JavaFx的主方法 MyJavaFXStage.fx
Java代碼

package org.webbiscuit;         import javafx.scene.*;     import javafx.scene.image.*;     import javafx.stage.*;     import javafx.scene.text.*;     /**     * @author sonic     */        Stage {         title: "Application title"        width: 300        height: 280        scene: Scene {             content:[              Text {                 font : Font {                     size : 16                }                 x: 10, y: 200                content: "Hello,這是一個 JavaFx + 可拖動Applet\n+ GAE 的應(yīng)用! It's very cool!!"            },                 ImageView { image: Image { url: "{__DIR__}GAE_java.png"  }  }             ]         }     }     package org.webbiscuit;   import javafx.scene.*;  import javafx.scene.image.*;  import javafx.stage.*;  import javafx.scene.text.*;  /**   * @author sonic   */   Stage {      title: "Application title"      width: 300      height: 280      scene: Scene {          content:[           Text {              font : Font {                  size : 16              }              x: 10, y: 200              content: "Hello,這是一個 JavaFx + 可拖動Applet\n+ GAE 的應(yīng)用! It's very cool!!"          },              ImageView { image: Image { url: "{__DIR__}GAE_java.png"  }  }          ]      }  }

部署的html文件如下,內(nèi)嵌了JavaFx的Applet.
Html代碼

<html>    <head>    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">    <title>JavaFXApplet</title>    </head>    <body>    <h3>按住 Alt 鍵,然后拖動鼠標(biāo)就可以把Applet拉到桌面了.</h3>    <script src="http://dl.javafx.com/1.1/dtfx.js"></script>    <script>        javafx(             {                   archive: "JavaFXApplet.jar",                   draggable: true,                   width: 300,                   height: 280,                   code: "org.webbiscuit.MyJavaFXStage",                   name: "JavaFXApplet"             }         );     </script>    </body>    </html>     <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>JavaFXApplet</title> </head> <body> <h3>按住 Alt 鍵,然后拖動鼠標(biāo)就可以把Applet拉到桌面了.</h3> <script src="http://dl.javafx.com/1.1/dtfx.js"></script> <script>     javafx(          {                archive: "JavaFXApplet.jar",                draggable: true,                width: 300,                height: 280,                code: "org.webbiscuit.MyJavaFXStage",                name: "JavaFXApplet"          }      );  </script> </body> </html>

到此,相信大家對“如何使用JavaFx創(chuàng)建可拖動的Applet”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI