• 游客,欢迎来到米坛社区。
    米坛社区是大型中文智能穿戴设备交流社区,在这里交流你的极客思想,共同建造我们的智能世界
    为了更加方便的获取支持与帮助,请加入米坛社区官方QQ频道

米环7小程序 熒光棒修改版

淘汰郎

LV8
🔥社区作者
普通成员
UID
77922
2021-12-01
595
6,508
基於@zqx666的熒光棒加以修改
//try { (() => { var e = [B]$$hmAppManager$$[/B].currentApp; var t = e.current, { px: o } = (new DeviceRuntimeCore.WidgetFactory( new DeviceRuntimeCore.HmDomApi(e, t) ), e.app.[B]globals[/B]); try { (() => { var e = [B]$$hmAppManager$$[/B].currentApp, t = e.current; new DeviceRuntimeCore.WidgetFactory( new DeviceRuntimeCore.HmDomApi(e, t), "drink" ); DeviceRuntimeCore.HmLogger.getLogger("sanjiao"); t.module = DeviceRuntimeCore.Page({ init_view() { hmUI.setLayerScrolling(false); var fps=hmFS.SysProGetInt('fps') if(fps>=1&fps<=100){ fps=hmFS.SysProGetInt('fps'); } else{ hmFS.SysProSetInt('fps', 20) fps=hmFS.SysProGetInt('fps'); } var bol=hmFS.SysProGetInt('bol') if(bol==1){ bol=hmFS.SysProGetInt('bol'); } else{ hmFS.SysProSetInt('bol', 0) bol=hmFS.SysProGetInt('bol'); } var light=hmSetting.getBrightness(); hmFS.SysProSetInt('light', light) var lightbool=0; hmUI.createWidget(hmUI.widget.TEXT,{x:20,y:25,w:152,h:35,color:"0xdddddd",text_size:25,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:"环间荧光棒"}) hmUI.createWidget(hmUI.widget.TEXT,{x:20,y:70,w:152,h:30,color:"0xdddddd",text_size:20,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:"帧率调节(实验)"}) hmUI.createWidget(hmUI.widget.TEXT,{x:0,y:370,w:192,h:60,color:"0x9d9d9d",text_size:18,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:"左滑进入第2頁\n@zqx666 bandbbs.cn"}) hmUI.createWidget(hmUI.widget.TEXT,{x:45,y:90,color:"0xdddddd",text_size:40,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:fps}) hmUI.createWidget(hmUI.widget.BUTTON, { x: 10, y: 100, text: '一', w: 35, h: 35, click_func: () => { if(fps>1){ if(fps>10) fps=fps-1; else fps=fps-1; } else{ hmUI.showToast({ text: '不能再少了,兄弟' }) } hmFS.SysProSetInt('fps', fps) hmUI.createWidget(hmUI.widget.FILL_RECT, { x: 70, y: 100, w: 50, h: 50, radius: 0, color: 0x000000 }) hmUI.createWidget(hmUI.widget.TEXT,{x:45,y:90,color:"0xdddddd",text_size:40,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:fps}) } }) hmUI.createWidget(hmUI.widget.BUTTON, { x: 147, y: 100, text: '十', w: 35, h: 35, click_func: () => { if(fps<100){ if(fps<10) fps=fps+1; else fps=fps+1; } else{ hmUI.showToast({ text: '不能再多了,兄弟' }) } hmFS.SysProSetInt('fps', fps) hmUI.createWidget(hmUI.widget.FILL_RECT, { x: 70, y: 100, w: 50, h: 50, radius: 0, color: 0x000000 }) hmUI.createWidget(hmUI.widget.TEXT,{x:45,y:90,color:"0xdddddd",text_size:40,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:fps}) } }) hmUI.createWidget(hmUI.widget.BUTTON, { x: 0, y: 170, text: '亮度调\n节&恢复', w: 75, h: 75, radius: 20, normal_color: 0x0072e3, press_color: 0x97cbff, click_func: () => { if(lightbool==0){ hmSetting.setBrightness(100) hmUI.showToast({ text: '亮度已调到最大' }) lightbool=1; } else{ hmSetting.setBrightness(light) hmUI.showToast({ text: '亮度已恢复到'+light+'%' }) lightbool=0; } } }) hmUI.createWidget(hmUI.widget.BUTTON, { x: 117, y: 170, text: '持续亮\n屏设置', w: 75, h: 75, radius: 20, normal_color: 0x0072e3, press_color: 0x97cbff, click_func: () => { hmSetting.setBrightness(light) if(bol==1){ hmApp.startApp({url: "Settings_displayBrightScreen", native: true}) } else{ hmApp.gotoPage({ url: "page/192x490_s_l66/index.page4", param: "..." }); } } }) hmUI.createWidget(hmUI.widget.BUTTON, { x: 0, y: 287, text: '彩色', w: 75, h: 75, radius: 20, normal_color: 0x0072e3, press_color: 0x97cbff, click_func: () => { hmApp.gotoPage({ url: "page/192x490_s_l66/index.page2", param: "..." }); } }) hmUI.createWidget(hmUI.widget.BUTTON, { x: 117, y: 287, text: '黑白', w: 75, h: 75, radius: 20, normal_color: 0x0072e3, press_color: 0x97cbff, click_func: () => { hmApp.gotoPage({ url: "page/192x490_s_l66/index.page3", param: "..." }); } }) hmApp.registerGestureEvent(function (event) { switch (event) { case hmApp.gesture.LEFT: hmSetting.setBrightness(light); hmApp.gotoPage({ url: "page/192x490_s_l66/index.page8", param: "..." }); break; case hmApp.gesture.RIGHT: hmSetting.setBrightness(light); break; } }) }, onInit() { console.log("index page.js on init invoke"), this.init_view(); }, onReady() { console.log("index page.js on ready invoke"); }, onShow() { console.log("index page.js on show invoke"); }, onHide() { console.log("index page.js on hide invoke"); }, onDestory() { console.log("index page.js on destory invoke"); } }); })(); } catch (e) { console.log(e); } })(); } catch (e) { console.log(e); }
以上
這一行要修改if(fps>=1&fps<=40){
JavaScript:
if(fps>=1&fps<=100){

第2版制作完成
已解決進入黑屏(如果你想要環間小鏡子😂)請警急更新2.1版
第2.1版制作完成
(我要繼續肝他)
期待3.0版

第3.0版制作完成
第3.333版制作完成
第3.6版制作完成
 

附件

  • 荧光棒独立版修改.bin
    18.7 KB · 查看: 34
  • 荧光棒独立版第2修改版.bin
    18.7 KB · 查看: 9
  • 荧光棒独立版第2.1修改版.bin
    129.5 KB · 查看: 5
  • 荧光棒独立版第3修改版.bin
    135.8 KB · 查看: 19
  • 荧光棒独立版第3.333修改版.bin
    154.6 KB · 查看: 25
  • 荧光棒独立版第3.6修改版-BETA.bin
    198.3 KB · 查看: 232
最后编辑:

Echojjy

LV0
普通成员
UID
57617
2021-01-30
193
24
基於@zqx666的熒光棒加以修改
JavaScript:
try {

  (() => {

    var e = __$$hmAppManager$$__.currentApp;

    var t = e.current,

      { px: o } =

        (new DeviceRuntimeCore.WidgetFactory(

          new DeviceRuntimeCore.HmDomApi(e, t)

        ),

        e.app.__globals__);

try {

  (() => {

    var e = __$$hmAppManager$$__.currentApp,

    t = e.current;

  new DeviceRuntimeCore.WidgetFactory(

    new DeviceRuntimeCore.HmDomApi(e, t),

    "drink"

  );

DeviceRuntimeCore.HmLogger.getLogger("sanjiao");

t.module = DeviceRuntimeCore.Page({

    init_view() {

      hmUI.setLayerScrolling(false);



      var fps=hmFS.SysProGetInt('fps')

      if(fps>=1&fps<=40){

      fps=hmFS.SysProGetInt('fps');

      }

      else{

      hmFS.SysProSetInt('fps', 20)

      fps=hmFS.SysProGetInt('fps');

      }

      var bol=hmFS.SysProGetInt('bol')

      if(bol==1){

      bol=hmFS.SysProGetInt('bol');

      }

      else{

      hmFS.SysProSetInt('bol', 0)

      bol=hmFS.SysProGetInt('bol');

      }

      var light=hmSetting.getBrightness();

      hmFS.SysProSetInt('light', light)

      var lightbool=0;

      hmUI.createWidget(hmUI.widget.TEXT,{x:20,y:25,w:152,h:35,color:"0xdddddd",text_size:25,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:"环间荧光棒"})

      hmUI.createWidget(hmUI.widget.TEXT,{x:20,y:70,w:152,h:30,color:"0xdddddd",text_size:20,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:"帧率调节(实验)"})

      hmUI.createWidget(hmUI.widget.TEXT,{x:0,y:370,w:192,h:60,color:"0x9d9d9d",text_size:18,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:"左滑进入关于界面\n@zqx666 bandbbs.cn"})

      hmUI.createWidget(hmUI.widget.TEXT,{x:45,y:90,color:"0xdddddd",text_size:40,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:fps})

hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 10,

      y: 100,

      text: '一',

      w: 35,

      h: 35,

      click_func: () => {

        if(fps>1){

        if(fps>10) fps=fps-1;

       else fps=fps-1;

}

else{

hmUI.showToast({

      text: '不能再少了,兄弟'

    })

}

hmFS.SysProSetInt('fps', fps)

         hmUI.createWidget(hmUI.widget.FILL_RECT, {

      x: 70,

      y: 100,

      w: 50,

      h: 50,

      radius: 0,

      color: 0x000000

    })

              hmUI.createWidget(hmUI.widget.TEXT,{x:45,y:90,color:"0xdddddd",text_size:40,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:fps})

     

      }

    })

hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 147,

      y: 100,

      text: '十',

      w: 35,

      h: 35,

      click_func: () => {

        if(fps<100){

        if(fps<10) fps=fps+1;

       else fps=fps+1;

}

else{

hmUI.showToast({

      text: '不能再多了,兄弟'

    })

}

hmFS.SysProSetInt('fps', fps)

         hmUI.createWidget(hmUI.widget.FILL_RECT, {

      x: 70,

      y: 100,

      w: 50,

      h: 50,

      radius: 0,

      color: 0x000000

    })

              hmUI.createWidget(hmUI.widget.TEXT,{x:45,y:90,color:"0xdddddd",text_size:40,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:fps})

     

      }

    })

hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 0,

      y: 170,

      text: '亮度调\n节&恢复',

      w: 75,

      h: 75,

      radius: 20,

      normal_color: 0x0072e3,

      press_color: 0x97cbff,

      click_func: () => {

      if(lightbool==0){

      hmSetting.setBrightness(100)

      hmUI.showToast({

      text: '亮度已调到最大'

    })

      lightbool=1;

      }

      else{

      hmSetting.setBrightness(light)

      hmUI.showToast({

      text: '亮度已恢复到'+light+'%'

    })

      lightbool=0;

      }



      }

    })

hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 117,

      y: 170,

      text: '持续亮\n屏设置',

      w: 75,

      h: 75,

      radius: 20,

      normal_color: 0x0072e3,

      press_color: 0x97cbff,

      click_func: () => {

      hmSetting.setBrightness(light)

      if(bol==1){

      hmApp.startApp({url: "Settings_displayBrightScreen", native: true})

      }

else{

hmApp.gotoPage({

                    url: "page/192x490_s_l66/index.page4",

                    param: "..."

                });

}

      }

    })

hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 0,

      y: 287,

      text: '彩色',

      w: 75,

      h: 75,

      radius: 20,

      normal_color: 0x0072e3,

      press_color: 0x97cbff,

      click_func: () => {

hmApp.gotoPage({

                    url: "page/192x490_s_l66/index.page2",

                    param: "..."

                });

      }

    })

    hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 117,

      y: 287,

      text: '黑白',

      w: 75,

      h: 75,

      radius: 20,

      normal_color: 0x0072e3,

      press_color: 0x97cbff,

            click_func: () => {

hmApp.gotoPage({

                    url: "page/192x490_s_l66/index.page3",

                    param: "..."

                });

      }

    })

hmApp.registerGestureEvent(function (event) {

        switch (event) {

            case hmApp.gesture.LEFT:

            hmSetting.setBrightness(light);

                hmApp.gotoPage({

                    url: "page/192x490_s_l66/index.page6",

                    param: "..."

                });

             

                break;

            case hmApp.gesture.RIGHT:

                hmSetting.setBrightness(light);

                break;

        }

    })

    },

    onInit() {

      console.log("index page.js on init invoke"), this.init_view();

    },

    onReady() {

      console.log("index page.js on ready invoke");

    },

    onShow() {

      console.log("index page.js on show invoke");

    },

    onHide() {

      console.log("index page.js on hide invoke");

    },

    onDestory() {

      console.log("index page.js on destory invoke");

    }

  });

})();

} catch (e) {

console.log(e);

}

})();

} catch (e) {

console.log(e);

}
以上
 

xuwenjie

LV0
普通成员
UID
95477
2022-07-13
33
2
基於@zqx666的熒光棒加以修改
JavaScript:
try {

  (() => {

    var e = __$$hmAppManager$$__.currentApp;

    var t = e.current,

      { px: o } =

        (new DeviceRuntimeCore.WidgetFactory(

          new DeviceRuntimeCore.HmDomApi(e, t)

        ),

        e.app.__globals__);

try {

  (() => {

    var e = __$$hmAppManager$$__.currentApp,

    t = e.current;

  new DeviceRuntimeCore.WidgetFactory(

    new DeviceRuntimeCore.HmDomApi(e, t),

    "drink"

  );

DeviceRuntimeCore.HmLogger.getLogger("sanjiao");

t.module = DeviceRuntimeCore.Page({

    init_view() {

      hmUI.setLayerScrolling(false);



      var fps=hmFS.SysProGetInt('fps')

      if(fps>=1&fps<=40){

      fps=hmFS.SysProGetInt('fps');

      }

      else{

      hmFS.SysProSetInt('fps', 20)

      fps=hmFS.SysProGetInt('fps');

      }

      var bol=hmFS.SysProGetInt('bol')

      if(bol==1){

      bol=hmFS.SysProGetInt('bol');

      }

      else{

      hmFS.SysProSetInt('bol', 0)

      bol=hmFS.SysProGetInt('bol');

      }

      var light=hmSetting.getBrightness();

      hmFS.SysProSetInt('light', light)

      var lightbool=0;

      hmUI.createWidget(hmUI.widget.TEXT,{x:20,y:25,w:152,h:35,color:"0xdddddd",text_size:25,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:"环间荧光棒"})

      hmUI.createWidget(hmUI.widget.TEXT,{x:20,y:70,w:152,h:30,color:"0xdddddd",text_size:20,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:"帧率调节(实验)"})

      hmUI.createWidget(hmUI.widget.TEXT,{x:0,y:370,w:192,h:60,color:"0x9d9d9d",text_size:18,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:"左滑进入关于界面\n@zqx666 bandbbs.cn"})

      hmUI.createWidget(hmUI.widget.TEXT,{x:45,y:90,color:"0xdddddd",text_size:40,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:fps})

hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 10,

      y: 100,

      text: '一',

      w: 35,

      h: 35,

      click_func: () => {

        if(fps>1){

        if(fps>10) fps=fps-1;

       else fps=fps-1;

}

else{

hmUI.showToast({

      text: '不能再少了,兄弟'

    })

}

hmFS.SysProSetInt('fps', fps)

         hmUI.createWidget(hmUI.widget.FILL_RECT, {

      x: 70,

      y: 100,

      w: 50,

      h: 50,

      radius: 0,

      color: 0x000000

    })

              hmUI.createWidget(hmUI.widget.TEXT,{x:45,y:90,color:"0xdddddd",text_size:40,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:fps})

     

      }

    })

hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 147,

      y: 100,

      text: '十',

      w: 35,

      h: 35,

      click_func: () => {

        if(fps<100){

        if(fps<10) fps=fps+1;

       else fps=fps+1;

}

else{

hmUI.showToast({

      text: '不能再多了,兄弟'

    })

}

hmFS.SysProSetInt('fps', fps)

         hmUI.createWidget(hmUI.widget.FILL_RECT, {

      x: 70,

      y: 100,

      w: 50,

      h: 50,

      radius: 0,

      color: 0x000000

    })

              hmUI.createWidget(hmUI.widget.TEXT,{x:45,y:90,color:"0xdddddd",text_size:40,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:fps})

     

      }

    })

hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 0,

      y: 170,

      text: '亮度调\n节&恢复',

      w: 75,

      h: 75,

      radius: 20,

      normal_color: 0x0072e3,

      press_color: 0x97cbff,

      click_func: () => {

      if(lightbool==0){

      hmSetting.setBrightness(100)

      hmUI.showToast({

      text: '亮度已调到最大'

    })

      lightbool=1;

      }

      else{

      hmSetting.setBrightness(light)

      hmUI.showToast({

      text: '亮度已恢复到'+light+'%'

    })

      lightbool=0;

      }



      }

    })

hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 117,

      y: 170,

      text: '持续亮\n屏设置',

      w: 75,

      h: 75,

      radius: 20,

      normal_color: 0x0072e3,

      press_color: 0x97cbff,

      click_func: () => {

      hmSetting.setBrightness(light)

      if(bol==1){

      hmApp.startApp({url: "Settings_displayBrightScreen", native: true})

      }

else{

hmApp.gotoPage({

                    url: "page/192x490_s_l66/index.page4",

                    param: "..."

                });

}

      }

    })

hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 0,

      y: 287,

      text: '彩色',

      w: 75,

      h: 75,

      radius: 20,

      normal_color: 0x0072e3,

      press_color: 0x97cbff,

      click_func: () => {

hmApp.gotoPage({

                    url: "page/192x490_s_l66/index.page2",

                    param: "..."

                });

      }

    })

    hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 117,

      y: 287,

      text: '黑白',

      w: 75,

      h: 75,

      radius: 20,

      normal_color: 0x0072e3,

      press_color: 0x97cbff,

            click_func: () => {

hmApp.gotoPage({

                    url: "page/192x490_s_l66/index.page3",

                    param: "..."

                });

      }

    })

hmApp.registerGestureEvent(function (event) {

        switch (event) {

            case hmApp.gesture.LEFT:

            hmSetting.setBrightness(light);

                hmApp.gotoPage({

                    url: "page/192x490_s_l66/index.page6",

                    param: "..."

                });

             

                break;

            case hmApp.gesture.RIGHT:

                hmSetting.setBrightness(light);

                break;

        }

    })

    },

    onInit() {

      console.log("index page.js on init invoke"), this.init_view();

    },

    onReady() {

      console.log("index page.js on ready invoke");

    },

    onShow() {

      console.log("index page.js on show invoke");

    },

    onHide() {

      console.log("index page.js on hide invoke");

    },

    onDestory() {

      console.log("index page.js on destory invoke");

    }

  });

})();

} catch (e) {

console.log(e);

}

})();

} catch (e) {

console.log(e);

}
以上
u
 
  • 赞
反馈: hst2022

不知晦朔

LV7
普通成员
UID
99186
2022-07-22
292
2,130
基於@zqx666的熒光棒加以修改
JavaScript:
try {

  (() => {

    var e = __$$hmAppManager$$__.currentApp;

    var t = e.current,

      { px: o } =

        (new DeviceRuntimeCore.WidgetFactory(

          new DeviceRuntimeCore.HmDomApi(e, t)

        ),

        e.app.__globals__);

try {

  (() => {

    var e = __$$hmAppManager$$__.currentApp,

    t = e.current;

  new DeviceRuntimeCore.WidgetFactory(

    new DeviceRuntimeCore.HmDomApi(e, t),

    "drink"

  );

DeviceRuntimeCore.HmLogger.getLogger("sanjiao");

t.module = DeviceRuntimeCore.Page({

    init_view() {

      hmUI.setLayerScrolling(false);



      var fps=hmFS.SysProGetInt('fps')

      if(fps>=1&fps<=40){

      fps=hmFS.SysProGetInt('fps');

      }

      else{

      hmFS.SysProSetInt('fps', 20)

      fps=hmFS.SysProGetInt('fps');

      }

      var bol=hmFS.SysProGetInt('bol')

      if(bol==1){

      bol=hmFS.SysProGetInt('bol');

      }

      else{

      hmFS.SysProSetInt('bol', 0)

      bol=hmFS.SysProGetInt('bol');

      }

      var light=hmSetting.getBrightness();

      hmFS.SysProSetInt('light', light)

      var lightbool=0;

      hmUI.createWidget(hmUI.widget.TEXT,{x:20,y:25,w:152,h:35,color:"0xdddddd",text_size:25,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:"环间荧光棒"})

      hmUI.createWidget(hmUI.widget.TEXT,{x:20,y:70,w:152,h:30,color:"0xdddddd",text_size:20,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:"帧率调节(实验)"})

      hmUI.createWidget(hmUI.widget.TEXT,{x:0,y:370,w:192,h:60,color:"0x9d9d9d",text_size:18,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:"左滑进入关于界面\n@zqx666 bandbbs.cn"})

      hmUI.createWidget(hmUI.widget.TEXT,{x:45,y:90,color:"0xdddddd",text_size:40,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:fps})

hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 10,

      y: 100,

      text: '一',

      w: 35,

      h: 35,

      click_func: () => {

        if(fps>1){

        if(fps>10) fps=fps-1;

       else fps=fps-1;

}

else{

hmUI.showToast({

      text: '不能再少了,兄弟'

    })

}

hmFS.SysProSetInt('fps', fps)

         hmUI.createWidget(hmUI.widget.FILL_RECT, {

      x: 70,

      y: 100,

      w: 50,

      h: 50,

      radius: 0,

      color: 0x000000

    })

              hmUI.createWidget(hmUI.widget.TEXT,{x:45,y:90,color:"0xdddddd",text_size:40,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:fps})

     

      }

    })

hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 147,

      y: 100,

      text: '十',

      w: 35,

      h: 35,

      click_func: () => {

        if(fps<100){

        if(fps<10) fps=fps+1;

       else fps=fps+1;

}

else{

hmUI.showToast({

      text: '不能再多了,兄弟'

    })

}

hmFS.SysProSetInt('fps', fps)

         hmUI.createWidget(hmUI.widget.FILL_RECT, {

      x: 70,

      y: 100,

      w: 50,

      h: 50,

      radius: 0,

      color: 0x000000

    })

              hmUI.createWidget(hmUI.widget.TEXT,{x:45,y:90,color:"0xdddddd",text_size:40,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:fps})

     

      }

    })

hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 0,

      y: 170,

      text: '亮度调\n节&恢复',

      w: 75,

      h: 75,

      radius: 20,

      normal_color: 0x0072e3,

      press_color: 0x97cbff,

      click_func: () => {

      if(lightbool==0){

      hmSetting.setBrightness(100)

      hmUI.showToast({

      text: '亮度已调到最大'

    })

      lightbool=1;

      }

      else{

      hmSetting.setBrightness(light)

      hmUI.showToast({

      text: '亮度已恢复到'+light+'%'

    })

      lightbool=0;

      }



      }

    })

hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 117,

      y: 170,

      text: '持续亮\n屏设置',

      w: 75,

      h: 75,

      radius: 20,

      normal_color: 0x0072e3,

      press_color: 0x97cbff,

      click_func: () => {

      hmSetting.setBrightness(light)

      if(bol==1){

      hmApp.startApp({url: "Settings_displayBrightScreen", native: true})

      }

else{

hmApp.gotoPage({

                    url: "page/192x490_s_l66/index.page4",

                    param: "..."

                });

}

      }

    })

hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 0,

      y: 287,

      text: '彩色',

      w: 75,

      h: 75,

      radius: 20,

      normal_color: 0x0072e3,

      press_color: 0x97cbff,

      click_func: () => {

hmApp.gotoPage({

                    url: "page/192x490_s_l66/index.page2",

                    param: "..."

                });

      }

    })

    hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 117,

      y: 287,

      text: '黑白',

      w: 75,

      h: 75,

      radius: 20,

      normal_color: 0x0072e3,

      press_color: 0x97cbff,

            click_func: () => {

hmApp.gotoPage({

                    url: "page/192x490_s_l66/index.page3",

                    param: "..."

                });

      }

    })

hmApp.registerGestureEvent(function (event) {

        switch (event) {

            case hmApp.gesture.LEFT:

            hmSetting.setBrightness(light);

                hmApp.gotoPage({

                    url: "page/192x490_s_l66/index.page6",

                    param: "..."

                });

             

                break;

            case hmApp.gesture.RIGHT:

                hmSetting.setBrightness(light);

                break;

        }

    })

    },

    onInit() {

      console.log("index page.js on init invoke"), this.init_view();

    },

    onReady() {

      console.log("index page.js on ready invoke");

    },

    onShow() {

      console.log("index page.js on show invoke");

    },

    onHide() {

      console.log("index page.js on hide invoke");

    },

    onDestory() {

      console.log("index page.js on destory invoke");

    }

  });

})();

} catch (e) {

console.log(e);

}

})();

} catch (e) {

console.log(e);

}
以上
与原版有什么区别吗?优化了啥?
 

romadovhan228

LV2
普通成员
UID
98234
2022-07-19
158
57
基於@zqx666的熒光棒加以修改
JavaScript:
try {

  (() => {

    var e = [B]$$hmAppManager$$[/B].currentApp;

    var t = e.current,

      { px: o } =

        (new DeviceRuntimeCore.WidgetFactory(

          new DeviceRuntimeCore.HmDomApi(e, t)

        ),

        e.app.[B]globals[/B]);

try {

  (() => {

    var e = [B]$$hmAppManager$$[/B].currentApp,

    t = e.current;

  new DeviceRuntimeCore.WidgetFactory(

    new DeviceRuntimeCore.HmDomApi(e, t),

    "drink"

  );

DeviceRuntimeCore.HmLogger.getLogger("sanjiao");

t.module = DeviceRuntimeCore.Page({

    init_view() {

      hmUI.setLayerScrolling(false);



      var fps=hmFS.SysProGetInt('fps')

      if(fps>=1&fps<=40){

      fps=hmFS.SysProGetInt('fps');

      }

      else{

      hmFS.SysProSetInt('fps', 20)

      fps=hmFS.SysProGetInt('fps');

      }

      var bol=hmFS.SysProGetInt('bol')

      if(bol==1){

      bol=hmFS.SysProGetInt('bol');

      }

      else{

      hmFS.SysProSetInt('bol', 0)

      bol=hmFS.SysProGetInt('bol');

      }

      var light=hmSetting.getBrightness();

      hmFS.SysProSetInt('light', light)

      var lightbool=0;

      hmUI.createWidget(hmUI.widget.TEXT,{x:20,y:25,w:152,h:35,color:"0xdddddd",text_size:25,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:"环间荧光棒"})

      hmUI.createWidget(hmUI.widget.TEXT,{x:20,y:70,w:152,h:30,color:"0xdddddd",text_size:20,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:"帧率调节(实验)"})

      hmUI.createWidget(hmUI.widget.TEXT,{x:0,y:370,w:192,h:60,color:"0x9d9d9d",text_size:18,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:"左滑进入关于界面\n@zqx666 bandbbs.cn"})

      hmUI.createWidget(hmUI.widget.TEXT,{x:45,y:90,color:"0xdddddd",text_size:40,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:fps})

hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 10,

      y: 100,

      text: '一',

      w: 35,

      h: 35,

      click_func: () => {

        if(fps>1){

        if(fps>10) fps=fps-1;

       else fps=fps-1;

}

else{

hmUI.showToast({

      text: '不能再少了,兄弟'

    })

}

hmFS.SysProSetInt('fps', fps)

         hmUI.createWidget(hmUI.widget.FILL_RECT, {

      x: 70,

      y: 100,

      w: 50,

      h: 50,

      radius: 0,

      color: 0x000000

    })

              hmUI.createWidget(hmUI.widget.TEXT,{x:45,y:90,color:"0xdddddd",text_size:40,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:fps})

     

      }

    })

hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 147,

      y: 100,

      text: '十',

      w: 35,

      h: 35,

      click_func: () => {

        if(fps<100){

        if(fps<10) fps=fps+1;

       else fps=fps+1;

}

else{

hmUI.showToast({

      text: '不能再多了,兄弟'

    })

}

hmFS.SysProSetInt('fps', fps)

         hmUI.createWidget(hmUI.widget.FILL_RECT, {

      x: 70,

      y: 100,

      w: 50,

      h: 50,

      radius: 0,

      color: 0x000000

    })

              hmUI.createWidget(hmUI.widget.TEXT,{x:45,y:90,color:"0xdddddd",text_size:40,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:fps})

     

      }

    })

hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 0,

      y: 170,

      text: '亮度调\n节&恢复',

      w: 75,

      h: 75,

      radius: 20,

      normal_color: 0x0072e3,

      press_color: 0x97cbff,

      click_func: () => {

      if(lightbool==0){

      hmSetting.setBrightness(100)

      hmUI.showToast({

      text: '亮度已调到最大'

    })

      lightbool=1;

      }

      else{

      hmSetting.setBrightness(light)

      hmUI.showToast({

      text: '亮度已恢复到'+light+'%'

    })

      lightbool=0;

      }



      }

    })

hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 117,

      y: 170,

      text: '持续亮\n屏设置',

      w: 75,

      h: 75,

      radius: 20,

      normal_color: 0x0072e3,

      press_color: 0x97cbff,

      click_func: () => {

      hmSetting.setBrightness(light)

      if(bol==1){

      hmApp.startApp({url: "Settings_displayBrightScreen", native: true})

      }

else{

hmApp.gotoPage({

                    url: "page/192x490_s_l66/index.page4",

                    param: "..."

                });

}

      }

    })

hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 0,

      y: 287,

      text: '彩色',

      w: 75,

      h: 75,

      radius: 20,

      normal_color: 0x0072e3,

      press_color: 0x97cbff,

      click_func: () => {

hmApp.gotoPage({

                    url: "page/192x490_s_l66/index.page2",

                    param: "..."

                });

      }

    })

    hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 117,

      y: 287,

      text: '黑白',

      w: 75,

      h: 75,

      radius: 20,

      normal_color: 0x0072e3,

      press_color: 0x97cbff,

            click_func: () => {

hmApp.gotoPage({

                    url: "page/192x490_s_l66/index.page3",

                    param: "..."

                });

      }

    })

hmApp.registerGestureEvent(function (event) {

        switch (event) {

            case hmApp.gesture.LEFT:

            hmSetting.setBrightness(світло);

                hmApp.gotoPage({

                    url: "сторінка/192x490_s_l66/index.page6",

                    параметр: "..."

                });

             

                перерву;

            case hmApp.gesture.RIGHT:

                hmSetting.setBrightness(світло);

                перерву;

        }

    })

    },

    onInit() {

      console.log("індекс сторінки.js під час виклику ініціалізації"), this.init_view();

    },

    onReady() {

      console.log("index.js page.js on ready invoke");

    },

    onShow() {

      console.log("індекс сторінки.js при виклику шоу");

    },

    onHide() {

      console.log("індекс сторінки.js при прихованому виклику");

    },

    onDestory() {

      console.log("індекс сторінки.js під час виклику знищення");

    }

  });

})();

} catch (e) {

console.log(e);

}

})();

} catch (e) {

console.log(e);

[/КОД]
вище
[/QUOTE]
66
 

风会过去

LV0
普通成员
UID
97841
2022-07-18
54
2
山东
基於@zqx666的熒光棒加以修改
JavaScript:
try {

  (() => {

    var e = __$$hmAppManager$$__.currentApp;

    var t = e.current,

      { px: o } =

        (new DeviceRuntimeCore.WidgetFactory(

          new DeviceRuntimeCore.HmDomApi(e, t)

        ),

        e.app.__globals__);

try {

  (() => {

    var e = __$$hmAppManager$$__.currentApp,

    t = e.current;

  new DeviceRuntimeCore.WidgetFactory(

    new DeviceRuntimeCore.HmDomApi(e, t),

    "drink"

  );

DeviceRuntimeCore.HmLogger.getLogger("sanjiao");

t.module = DeviceRuntimeCore.Page({

    init_view() {

      hmUI.setLayerScrolling(false);



      var fps=hmFS.SysProGetInt('fps')

      if(fps>=1&fps<=40){

      fps=hmFS.SysProGetInt('fps');

      }

      else{

      hmFS.SysProSetInt('fps', 20)

      fps=hmFS.SysProGetInt('fps');

      }

      var bol=hmFS.SysProGetInt('bol')

      if(bol==1){

      bol=hmFS.SysProGetInt('bol');

      }

      else{

      hmFS.SysProSetInt('bol', 0)

      bol=hmFS.SysProGetInt('bol');

      }

      var light=hmSetting.getBrightness();

      hmFS.SysProSetInt('light', light)

      var lightbool=0;

      hmUI.createWidget(hmUI.widget.TEXT,{x:20,y:25,w:152,h:35,color:"0xdddddd",text_size:25,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:"环间荧光棒"})

      hmUI.createWidget(hmUI.widget.TEXT,{x:20,y:70,w:152,h:30,color:"0xdddddd",text_size:20,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:"帧率调节(实验)"})

      hmUI.createWidget(hmUI.widget.TEXT,{x:0,y:370,w:192,h:60,color:"0x9d9d9d",text_size:18,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:"左滑进入关于界面\n@zqx666 bandbbs.cn"})

      hmUI.createWidget(hmUI.widget.TEXT,{x:45,y:90,color:"0xdddddd",text_size:40,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:fps})

hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 10,

      y: 100,

      text: '一',

      w: 35,

      h: 35,

      click_func: () => {

        if(fps>1){

        if(fps>10) fps=fps-1;

       else fps=fps-1;

}

else{

hmUI.showToast({

      text: '不能再少了,兄弟'

    })

}

hmFS.SysProSetInt('fps', fps)

         hmUI.createWidget(hmUI.widget.FILL_RECT, {

      x: 70,

      y: 100,

      w: 50,

      h: 50,

      radius: 0,

      color: 0x000000

    })

              hmUI.createWidget(hmUI.widget.TEXT,{x:45,y:90,color:"0xdddddd",text_size:40,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:fps})

     

      }

    })

hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 147,

      y: 100,

      text: '十',

      w: 35,

      h: 35,

      click_func: () => {

        if(fps<100){

        if(fps<10) fps=fps+1;

       else fps=fps+1;

}

else{

hmUI.showToast({

      text: '不能再多了,兄弟'

    })

}

hmFS.SysProSetInt('fps', fps)

         hmUI.createWidget(hmUI.widget.FILL_RECT, {

      x: 70,

      y: 100,

      w: 50,

      h: 50,

      radius: 0,

      color: 0x000000

    })

              hmUI.createWidget(hmUI.widget.TEXT,{x:45,y:90,color:"0xdddddd",text_size:40,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:fps})

     

      }

    })

hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 0,

      y: 170,

      text: '亮度调\n节&恢复',

      w: 75,

      h: 75,

      radius: 20,

      normal_color: 0x0072e3,

      press_color: 0x97cbff,

      click_func: () => {

      if(lightbool==0){

      hmSetting.setBrightness(100)

      hmUI.showToast({

      text: '亮度已调到最大'

    })

      lightbool=1;

      }

      else{

      hmSetting.setBrightness(light)

      hmUI.showToast({

      text: '亮度已恢复到'+light+'%'

    })

      lightbool=0;

      }



      }

    })

hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 117,

      y: 170,

      text: '持续亮\n屏设置',

      w: 75,

      h: 75,

      radius: 20,

      normal_color: 0x0072e3,

      press_color: 0x97cbff,

      click_func: () => {

      hmSetting.setBrightness(light)

      if(bol==1){

      hmApp.startApp({url: "Settings_displayBrightScreen", native: true})

      }

else{

hmApp.gotoPage({

                    url: "page/192x490_s_l66/index.page4",

                    param: "..."

                });

}

      }

    })

hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 0,

      y: 287,

      text: '彩色',

      w: 75,

      h: 75,

      radius: 20,

      normal_color: 0x0072e3,

      press_color: 0x97cbff,

      click_func: () => {

hmApp.gotoPage({

                    url: "page/192x490_s_l66/index.page2",

                    param: "..."

                });

      }

    })

    hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 117,

      y: 287,

      text: '黑白',

      w: 75,

      h: 75,

      radius: 20,

      normal_color: 0x0072e3,

      press_color: 0x97cbff,

            click_func: () => {

hmApp.gotoPage({

                    url: "page/192x490_s_l66/index.page3",

                    param: "..."

                });

      }

    })

hmApp.registerGestureEvent(function (event) {

        switch (event) {

            case hmApp.gesture.LEFT:

            hmSetting.setBrightness(light);

                hmApp.gotoPage({

                    url: "page/192x490_s_l66/index.page6",

                    param: "..."

                });

             

                break;

            case hmApp.gesture.RIGHT:

                hmSetting.setBrightness(light);

                break;

        }

    })

    },

    onInit() {

      console.log("index page.js on init invoke"), this.init_view();

    },

    onReady() {

      console.log("index page.js on ready invoke");

    },

    onShow() {

      console.log("index page.js on show invoke");

    },

    onHide() {

      console.log("index page.js on hide invoke");

    },

    onDestory() {

      console.log("index page.js on destory invoke");

    }

  });

})();

} catch (e) {

console.log(e);

}

})();

} catch (e) {

console.log(e);

}
以上
666
 

WHHHHHN

LV0
普通成员
UID
132634
2022-10-01
2
0
基於@zqx666的熒光棒加以修改
JavaScript:
try {

  (() => {

    var e = __$$hmAppManager$$__.currentApp;

    var t = e.current,

      { px: o } =

        (new DeviceRuntimeCore.WidgetFactory(

          new DeviceRuntimeCore.HmDomApi(e, t)

        ),

        e.app.__globals__);

try {

  (() => {

    var e = __$$hmAppManager$$__.currentApp,

    t = e.current;

  new DeviceRuntimeCore.WidgetFactory(

    new DeviceRuntimeCore.HmDomApi(e, t),

    "drink"

  );

DeviceRuntimeCore.HmLogger.getLogger("sanjiao");

t.module = DeviceRuntimeCore.Page({

    init_view() {

      hmUI.setLayerScrolling(false);



      var fps=hmFS.SysProGetInt('fps')

      if(fps>=1&fps<=40){

      fps=hmFS.SysProGetInt('fps');

      }

      else{

      hmFS.SysProSetInt('fps', 20)

      fps=hmFS.SysProGetInt('fps');

      }

      var bol=hmFS.SysProGetInt('bol')

      if(bol==1){

      bol=hmFS.SysProGetInt('bol');

      }

      else{

      hmFS.SysProSetInt('bol', 0)

      bol=hmFS.SysProGetInt('bol');

      }

      var light=hmSetting.getBrightness();

      hmFS.SysProSetInt('light', light)

      var lightbool=0;

      hmUI.createWidget(hmUI.widget.TEXT,{x:20,y:25,w:152,h:35,color:"0xdddddd",text_size:25,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:"环间荧光棒"})

      hmUI.createWidget(hmUI.widget.TEXT,{x:20,y:70,w:152,h:30,color:"0xdddddd",text_size:20,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:"帧率调节(实验)"})

      hmUI.createWidget(hmUI.widget.TEXT,{x:0,y:370,w:192,h:60,color:"0x9d9d9d",text_size:18,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:"左滑进入关于界面\n@zqx666 bandbbs.cn"})

      hmUI.createWidget(hmUI.widget.TEXT,{x:45,y:90,color:"0xdddddd",text_size:40,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:fps})

hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 10,

      y: 100,

      text: '一',

      w: 35,

      h: 35,

      click_func: () => {

        if(fps>1){

        if(fps>10) fps=fps-1;

       else fps=fps-1;

}

else{

hmUI.showToast({

      text: '不能再少了,兄弟'

    })

}

hmFS.SysProSetInt('fps', fps)

         hmUI.createWidget(hmUI.widget.FILL_RECT, {

      x: 70,

      y: 100,

      w: 50,

      h: 50,

      radius: 0,

      color: 0x000000

    })

              hmUI.createWidget(hmUI.widget.TEXT,{x:45,y:90,color:"0xdddddd",text_size:40,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:fps})

     

      }

    })

hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 147,

      y: 100,

      text: '十',

      w: 35,

      h: 35,

      click_func: () => {

        if(fps<100){

        if(fps<10) fps=fps+1;

       else fps=fps+1;

}

else{

hmUI.showToast({

      text: '不能再多了,兄弟'

    })

}

hmFS.SysProSetInt('fps', fps)

         hmUI.createWidget(hmUI.widget.FILL_RECT, {

      x: 70,

      y: 100,

      w: 50,

      h: 50,

      radius: 0,

      color: 0x000000

    })

              hmUI.createWidget(hmUI.widget.TEXT,{x:45,y:90,color:"0xdddddd",text_size:40,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:fps})

     

      }

    })

hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 0,

      y: 170,

      text: '亮度调\n节&恢复',

      w: 75,

      h: 75,

      radius: 20,

      normal_color: 0x0072e3,

      press_color: 0x97cbff,

      click_func: () => {

      if(lightbool==0){

      hmSetting.setBrightness(100)

      hmUI.showToast({

      text: '亮度已调到最大'

    })

      lightbool=1;

      }

      else{

      hmSetting.setBrightness(light)

      hmUI.showToast({

      text: '亮度已恢复到'+light+'%'

    })

      lightbool=0;

      }



      }

    })

hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 117,

      y: 170,

      text: '持续亮\n屏设置',

      w: 75,

      h: 75,

      radius: 20,

      normal_color: 0x0072e3,

      press_color: 0x97cbff,

      click_func: () => {

      hmSetting.setBrightness(light)

      if(bol==1){

      hmApp.startApp({url: "Settings_displayBrightScreen", native: true})

      }

else{

hmApp.gotoPage({

                    url: "page/192x490_s_l66/index.page4",

                    param: "..."

                });

}

      }

    })

hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 0,

      y: 287,

      text: '彩色',

      w: 75,

      h: 75,

      radius: 20,

      normal_color: 0x0072e3,

      press_color: 0x97cbff,

      click_func: () => {

hmApp.gotoPage({

                    url: "page/192x490_s_l66/index.page2",

                    param: "..."

                });

      }

    })

    hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 117,

      y: 287,

      text: '黑白',

      w: 75,

      h: 75,

      radius: 20,

      normal_color: 0x0072e3,

      press_color: 0x97cbff,

            click_func: () => {

hmApp.gotoPage({

                    url: "page/192x490_s_l66/index.page3",

                    param: "..."

                });

      }

    })

hmApp.registerGestureEvent(function (event) {

        switch (event) {

            case hmApp.gesture.LEFT:

            hmSetting.setBrightness(light);

                hmApp.gotoPage({

                    url: "page/192x490_s_l66/index.page6",

                    param: "..."

                });

             

                break;

            case hmApp.gesture.RIGHT:

                hmSetting.setBrightness(light);

                break;

        }

    })

    },

    onInit() {

      console.log("index page.js on init invoke"), this.init_view();

    },

    onReady() {

      console.log("index page.js on ready invoke");

    },

    onShow() {

      console.log("index page.js on show invoke");

    },

    onHide() {

      console.log("index page.js on hide invoke");

    },

    onDestory() {

      console.log("index page.js on destory invoke");

    }

  });

})();

} catch (e) {

console.log(e);

}

})();

} catch (e) {

console.log(e);

}
以上
666
 

怕虫子的虫子

LV0
普通成员
UID
135365
2022-10-04
10
0
基於@zqx666的熒光棒加以修改
JavaScript:
try {

  (() => {

    var e = __$$hmAppManager$$__.currentApp;

    var t = e.current,

      { px: o } =

        (new DeviceRuntimeCore.WidgetFactory(

          new DeviceRuntimeCore.HmDomApi(e, t)

        ),

        e.app.__globals__);

try {

  (() => {

    var e = __$$hmAppManager$$__.currentApp,

    t = e.current;

  new DeviceRuntimeCore.WidgetFactory(

    new DeviceRuntimeCore.HmDomApi(e, t),

    "drink"

  );

DeviceRuntimeCore.HmLogger.getLogger("sanjiao");

t.module = DeviceRuntimeCore.Page({

    init_view() {

      hmUI.setLayerScrolling(false);



      var fps=hmFS.SysProGetInt('fps')

      if(fps>=1&fps<=40){

      fps=hmFS.SysProGetInt('fps');

      }

      else{

      hmFS.SysProSetInt('fps', 20)

      fps=hmFS.SysProGetInt('fps');

      }

      var bol=hmFS.SysProGetInt('bol')

      if(bol==1){

      bol=hmFS.SysProGetInt('bol');

      }

      else{

      hmFS.SysProSetInt('bol', 0)

      bol=hmFS.SysProGetInt('bol');

      }

      var light=hmSetting.getBrightness();

      hmFS.SysProSetInt('light', light)

      var lightbool=0;

      hmUI.createWidget(hmUI.widget.TEXT,{x:20,y:25,w:152,h:35,color:"0xdddddd",text_size:25,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:"环间荧光棒"})

      hmUI.createWidget(hmUI.widget.TEXT,{x:20,y:70,w:152,h:30,color:"0xdddddd",text_size:20,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:"帧率调节(实验)"})

      hmUI.createWidget(hmUI.widget.TEXT,{x:0,y:370,w:192,h:60,color:"0x9d9d9d",text_size:18,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:"左滑进入关于界面\n@zqx666 bandbbs.cn"})

      hmUI.createWidget(hmUI.widget.TEXT,{x:45,y:90,color:"0xdddddd",text_size:40,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:fps})

hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 10,

      y: 100,

      text: '一',

      w: 35,

      h: 35,

      click_func: () => {

        if(fps>1){

        if(fps>10) fps=fps-1;

       else fps=fps-1;

}

else{

hmUI.showToast({

      text: '不能再少了,兄弟'

    })

}

hmFS.SysProSetInt('fps', fps)

         hmUI.createWidget(hmUI.widget.FILL_RECT, {

      x: 70,

      y: 100,

      w: 50,

      h: 50,

      radius: 0,

      color: 0x000000

    })

              hmUI.createWidget(hmUI.widget.TEXT,{x:45,y:90,color:"0xdddddd",text_size:40,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:fps})

 

      }

    })

hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 147,

      y: 100,

      text: '十',

      w: 35,

      h: 35,

      click_func: () => {

        if(fps<100){

        if(fps<10) fps=fps+1;

       else fps=fps+1;

}

else{

hmUI.showToast({

      text: '不能再多了,兄弟'

    })

}

hmFS.SysProSetInt('fps', fps)

         hmUI.createWidget(hmUI.widget.FILL_RECT, {

      x: 70,

      y: 100,

      w: 50,

      h: 50,

      radius: 0,

      color: 0x000000

    })

              hmUI.createWidget(hmUI.widget.TEXT,{x:45,y:90,color:"0xdddddd",text_size:40,text_style:hmUI.text_style.NONE,align_h:hmUI.align.CENTER_H,text:fps})

 

      }

    })

hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 0,

      y: 170,

      text: '亮度调\n节&恢复',

      w: 75,

      h: 75,

      radius: 20,

      normal_color: 0x0072e3,

      press_color: 0x97cbff,

      click_func: () => {

      if(lightbool==0){

      hmSetting.setBrightness(100)

      hmUI.showToast({

      text: '亮度已调到最大'

    })

      lightbool=1;

      }

      else{

      hmSetting.setBrightness(light)

      hmUI.showToast({

      text: '亮度已恢复到'+light+'%'

    })

      lightbool=0;

      }



      }

    })

hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 117,

      y: 170,

      text: '持续亮\n屏设置',

      w: 75,

      h: 75,

      radius: 20,

      normal_color: 0x0072e3,

      press_color: 0x97cbff,

      click_func: () => {

      hmSetting.setBrightness(light)

      if(bol==1){

      hmApp.startApp({url: "Settings_displayBrightScreen", native: true})

      }

else{

hmApp.gotoPage({

                    url: "page/192x490_s_l66/index.page4",

                    param: "..."

                });

}

      }

    })

hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 0,

      y: 287,

      text: '彩色',

      w: 75,

      h: 75,

      radius: 20,

      normal_color: 0x0072e3,

      press_color: 0x97cbff,

      click_func: () => {

hmApp.gotoPage({

                    url: "page/192x490_s_l66/index.page2",

                    param: "..."

                });

      }

    })

    hmUI.createWidget(hmUI.widget.BUTTON, {

      x: 117,

      y: 287,

      text: '黑白',

      w: 75,

      h: 75,

      radius: 20,

      normal_color: 0x0072e3,

      press_color: 0x97cbff,

            click_func: () => {

hmApp.gotoPage({

                    url: "page/192x490_s_l66/index.page3",

                    param: "..."

                });

      }

    })

hmApp.registerGestureEvent(function (event) {

        switch (event) {

            case hmApp.gesture.LEFT:

            hmSetting.setBrightness(light);

                hmApp.gotoPage({

                    url: "page/192x490_s_l66/index.page6",

                    param: "..."

                });

       

                break;

            case hmApp.gesture.RIGHT:

                hmSetting.setBrightness(light);

                break;

        }

    })

    },

    onInit() {

      console.log("index page.js on init invoke"), this.init_view();

    },

    onReady() {

      console.log("index page.js on ready invoke");

    },

    onShow() {

      console.log("index page.js on show invoke");

    },

    onHide() {

      console.log("index page.js on hide invoke");

    },

    onDestory() {

      console.log("index page.js on destory invoke");

    }

  });

})();

} catch (e) {

console.log(e);

}

})();

} catch (e) {

console.log(e);

}
以上

這一行要修改if(fps>=1&fps<=40){
JavaScript:
if(fps>=1&fps<=100){

第2版制作完成
已解決進入黑屏(如果你想要環間小鏡子😂)請警急更新2.1版
第2.1版制作完成
(我要繼續肝他)
期待3.0版
第3.0版制作完成
 

*这是一则由 Google AdSense 自动推荐的广告,与本站无关,不对其真实性与可靠性负责