第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

ExtJS如何使繪制精靈響應(yīng)?

ExtJS如何使繪制精靈響應(yīng)?

ITMISS 2023-11-02 21:50:07
我有一個(gè)由精靈組成的圖像。我試圖使其響應(yīng),因此當(dāng)我調(diào)整瀏覽器大小時(shí),圖像也會(huì)針對(duì)較小的設(shè)備及其屏幕調(diào)整大小。這是演示: https: //fiddle.sencha.com/#fiddle/3al5&view/editorsprites: [{                type: 'circle',                cx: 150,                cy: 150,                r: 150,                fillStyle: '#000'            }, {                type: 'circle',                cx: 150,                cy: 150,                r: 100,                fillStyle: '#fff'            },]將寬度和高度設(shè)置為 100% 不起作用。現(xiàn)在,沒有反應(yīng):
查看完整描述

1 回答

?
慕斯709654

TA貢獻(xiàn)1840條經(jīng)驗(yàn) 獲得超5個(gè)贊

您可以使用“resize”事件處理程序并縮放所有精靈,如下所示(v.5.1):


Ext.application({

  name: 'Fiddle',


  launch: function () {

    Ext.create({

      xtype: 'window',

      title: 'Resizable Sprite Window',

      width: 400,

      height: 400,

      layout: 'fit',

      items: [

        {

          xtype: 'draw',

          plugins: ['spriteevents'],

          sprites: [

            {

              type: 'circle',

              cx: 150,

              cy: 150,

              r: 150,

              fillStyle: '#000',

            },

            {

              type: 'circle',

              cx: 150,

              cy: 150,

              r: 100,

              fillStyle: '#fff',

            },

            {

              type: 'rect',

              height: 4,

              radius: 1,

              width: 30,

              x: 135,

              y: 44,

              fillStyle: '#fff',

            },

            {

              type: 'text',

              x: 212.5,

              y: 41.7,

              fontSize: '30px',

              fillStyle: '#fff',

              text: '1',

              textAlign: 'center',

              textBaseline: 'middle',

            },

            {

              type: 'text',

              x: 258.2,

              y: 87.5,

              fontSize: '30px',

              fillStyle: '#fff',

              text: '2',

              textAlign: 'center',

              textBaseline: 'middle',

            },

            {

              type: 'text',

              x: 275,

              y: 150,

              fontSize: '30px',

              fillStyle: '#fff',

              text: '3',

              textAlign: 'center',

              textBaseline: 'middle',

            },

            {

              type: 'text',

              x: 258.2,

              y: 212.5,

              fontSize: '30px',

              fillStyle: '#fff',

              text: '4',

              textAlign: 'center',

              textBaseline: 'middle',

            },

            {

              type: 'text',

              x: 212.5,

              y: 258.2,

              fontSize: '30px',

              fillStyle: '#fff',

              text: '5',

              textAlign: 'center',

              textBaseline: 'middle',

            },

            {

              type: 'text',

              x: 150,

              y: 275,

              fontSize: '30px',

              fillStyle: '#fff',

              text: '6',

              textAlign: 'center',

              textBaseline: 'middle',

            },

            {

              type: 'text',

              x: 87.5,

              y: 258.2,

              fontSize: '30px',

              fillStyle: '#fff',

              text: '7',

              textAlign: 'center',

              textBaseline: 'middle',

            },

            {

              type: 'text',

              x: 41.7,

              y: 212.5,

              fontSize: '30px',

              fillStyle: '#fff',

              text: '8',

              textAlign: 'center',

              textBaseline: 'middle',

            },

            {

              type: 'text',

              x: 25,

              y: 150,

              fontSize: '30px',

              fillStyle: '#fff',

              text: '9',

              textAlign: 'center',

              textBaseline: 'middle',

            },

            {

              type: 'text',

              x: 41.7,

              y: 87.5,

              fontSize: '30px',

              fillStyle: '#fff',

              text: '10',

              textAlign: 'center',

              textBaseline: 'middle',

            },

            {

              type: 'text',

              x: 87.5,

              y: 41.7,

              fontSize: '30px',

              fillStyle: '#fff',

              text: '11',

              textAlign: 'center',

              textBaseline: 'middle',

            },

            {

              type: 'text',

              x: 150,

              y: 25,

              fontSize: '30px',

              fillStyle: '#fff',

              text: '12',

              textAlign: 'center',

              textBaseline: 'middle',

            },

            {

              type: 'text',

              x: 150,

              y: 75,

              fontSize: '15px',

              fillStyle: '#000',

              text: 'Clock',

              textAlign: 'center',

              textBaseline: 'middle',

            },

          ],

          listeners: {

            afterRender: this.onDrawPanelIdAfterRender,

            spriteclick: this.onDrawPanelIdSpriteClick,

            boxready: function (item, width, height) {

              item.initWidth = width;

              item.initHeight = height;

            },

            resize: function (item, width, height, oldWidth, oldHeight) {

              if (arguments.length == 3) {

                // Looks like to be bug, fires twice with diferent number of arguments..

                return;

              }

              const scalingX = width / item.initWidth;

              const scalingY = height / item.initHeight;

              const items = item.getSurface().getItems();

              items.forEach((spriteItem) => {

                spriteItem.setAttributes({

                  scalingX: scalingX,

                  scalingY: scalingY,

                  scalingCenterX: scalingX,

                  scalingCenterY: scalingY,

                });

              });

            },

          },

        },

      ],

    }).show();

  },

  onDrawPanelIdAfterRender: function (item, event) {

    console.log('afterrender....');

  },

  onDrawPanelIdSpriteClick: function (item, event) {

    console.log('spriteclick....');

    var sprite = item && item.sprite;

    if (sprite) {

      sprite.setAttributes({

        fillStyle: 'red',

      });

      sprite.getSurface().renderFrame();

    }

  },

});

保持比例 (v.5.1):


Ext.application({

  name: 'Fiddle',


  launch: function () {

    var window = Ext.create({

      xtype: 'window',

      title: 'Resizable Sprite Window',

      width: 400,

      height: 400,

      layout: 'fit',

      items: [

        {

          xtype: 'draw',

          plugins: ['spriteevents'],

          sprites: [

            {

              type: 'circle',

              cx: 150,

              cy: 150,

              r: 150,

              fillStyle: '#000',

            },

            {

              type: 'circle',

              cx: 150,

              cy: 150,

              r: 100,

              fillStyle: '#fff',

            },

            {

              type: 'rect',

              height: 4,

              radius: 1,

              width: 30,

              x: 135,

              y: 44,

              fillStyle: '#fff',

            },

            {

              type: 'text',

              x: 212.5,

              y: 41.7,

              fontSize: '30px',

              fillStyle: '#fff',

              text: '1',

              textAlign: 'center',

              textBaseline: 'middle',

            },

            {

              type: 'text',

              x: 258.2,

              y: 87.5,

              fontSize: '30px',

              fillStyle: '#fff',

              text: '2',

              textAlign: 'center',

              textBaseline: 'middle',

            },

            {

              type: 'text',

              x: 275,

              y: 150,

              fontSize: '30px',

              fillStyle: '#fff',

              text: '3',

              textAlign: 'center',

              textBaseline: 'middle',

            },

            {

              type: 'text',

              x: 258.2,

              y: 212.5,

              fontSize: '30px',

              fillStyle: '#fff',

              text: '4',

              textAlign: 'center',

              textBaseline: 'middle',

            },

            {

              type: 'text',

              x: 212.5,

              y: 258.2,

              fontSize: '30px',

              fillStyle: '#fff',

              text: '5',

              textAlign: 'center',

              textBaseline: 'middle',

            },

            {

              type: 'text',

              x: 150,

              y: 275,

              fontSize: '30px',

              fillStyle: '#fff',

              text: '6',

              textAlign: 'center',

              textBaseline: 'middle',

            },

            {

              type: 'text',

              x: 87.5,

              y: 258.2,

              fontSize: '30px',

              fillStyle: '#fff',

              text: '7',

              textAlign: 'center',

              textBaseline: 'middle',

            },

            {

              type: 'text',

              x: 41.7,

              y: 212.5,

              fontSize: '30px',

              fillStyle: '#fff',

              text: '8',

              textAlign: 'center',

              textBaseline: 'middle',

            },

            {

              type: 'text',

              x: 25,

              y: 150,

              fontSize: '30px',

              fillStyle: '#fff',

              text: '9',

              textAlign: 'center',

              textBaseline: 'middle',

            },

            {

              type: 'text',

              x: 41.7,

              y: 87.5,

              fontSize: '30px',

              fillStyle: '#fff',

              text: '10',

              textAlign: 'center',

              textBaseline: 'middle',

            },

            {

              type: 'text',

              x: 87.5,

              y: 41.7,

              fontSize: '30px',

              fillStyle: '#fff',

              text: '11',

              textAlign: 'center',

              textBaseline: 'middle',

            },

            {

              type: 'text',

              x: 150,

              y: 25,

              fontSize: '30px',

              fillStyle: '#fff',

              text: '12',

              textAlign: 'center',

              textBaseline: 'middle',

            },

            {

              type: 'text',

              x: 150,

              y: 75,

              fontSize: '15px',

              fillStyle: '#000',

              text: 'Clock',

              textAlign: 'center',

              textBaseline: 'middle',

            },

          ],

          listeners: {

            afterRender: this.onDrawPanelIdAfterRender,

            spriteclick: this.onDrawPanelIdSpriteClick,

            boxready: function (item, width, height) {

              item.initWidth = width;

              item.initHeight = height;

            },

            resize: function (item, width, height, oldWidth, oldHeight) {

              if (arguments.length == 3) {

                // Looks like to be bug, fires twice with diferent number of arguments..

                return;

              }


              const scalingX = width / item.initWidth;

              const scalingY = height / item.initHeight;

              const proportionalScaling = Math.min(scalingX, scalingY);


              const items = item.getSurface().getItems();

              items.forEach((spriteItem) => {

                spriteItem.setAttributes({

                  scalingX: proportionalScaling,

                  scalingY: proportionalScaling,

                  scalingCenterX: proportionalScaling,

                  scalingCenterY: proportionalScaling,

                });

              });

            },

          },

        },

      ],

    }).show();


    setInterval(function () {

      window.setWidth(Math.ceil(100 + Math.random() * 400));

      window.setHeight(Math.ceil(100 + Math.random() * 400));

    }, 1000);

  },

  onDrawPanelIdAfterRender: function (item, event) {

    console.log('afterrender....');

  },

  onDrawPanelIdSpriteClick: function (item, event) {

    console.log('spriteclick....');

    var sprite = item && item.sprite;

    if (sprite) {

      sprite.setAttributes({

        fillStyle: 'red',

      });

      sprite.getSurface().renderFrame();

    }

  },

});



查看完整回答
反對(duì) 回復(fù) 2023-11-02
  • 1 回答
  • 0 關(guān)注
  • 127 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)