Ext.js 圖像

2022-05-20 16:02 更新

描述

這用于向圖形添加圖像。

語法

這里是添加圖像的簡單語法。

xtype: 'draw',
type: 'image'

下面是一個簡單的例子顯示用法。

<!DOCTYPE html>
<html>
<head>
   <link href="./ext-6.0.0/build/classic/theme-classic/resources/theme-classic-all.css" rel="stylesheet" />
   <script type="text/javascript" src="./ext-6.0.0/build/ext-all.js"></script>
   <script type="text/javascript" src="./ext-6.0.0/build/packages/charts/classic/charts.js"></script>
   <script type="text/javascript">
      Ext.onReady(function() {
         Ext.create({
            xtype: 'draw',
            renderTo: Ext.getBody(),
            width: 600,
            height: 200,
            sprites: [{
               type: 'image',
               src : 'https://atts.w3cschool.cn/attachments/image/20170106/1483685153522480.jpg'
          }]
         });
      });
   </script>
</head>
<body>
</body>
</html>

這將產生以下結果(在自己的項目記得修改src):

Ext.js 圖像


以上內容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號