首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏猛牛哥的博客

    listview内嵌子控件的响应问题

    winform.richedit.text = "" winform.listview.addCtrl( ["btn1"] ={ cls="button";left=0;top=0;right=50;bottom=50;autoResize =100;  }; ) winform.listview.addCtrl( ["btn2"] ={ cls="button";left=0;top=52;right=50;bottom=102;autoResize 101;  }; ) winform.listview.addCtrl( ["btn3"] ={ cls="button";left=0;top=104;right=50;bottom=154;autoResize 102;  }; ) winform.listview.addCtrl( ["btn4"] ={ cls="button";left=0;top=156;right=50;bottom=206;autoResize sdfd645'}) io.open() winform.listview.addCtrl( edit = { cls="button";left=0;top=0;right=50;bottom=50;autoResize

    1.2K10发布于 2018-06-04
  • 来自专栏站长的编程笔记

    【说站】唯美好看的鼠标滑动特效在线JS代码

    e.autoresize=! 1:(e.container.appendChild(u),e.hasOwnProperty("autoresize")||(e.autoresize=l.autoresize),u.id=t),n(self ,g),n(s,e),n(s,p),a(),e.autoresize&&i(),w.push(s),s.autostart&&setTimeout(s.start,0),s}function n(e,n

    4.1K10编辑于 2022-11-28
  • 来自专栏前端历劫之路

    从0到1搭建一款页面自适应组件(Vue.js)

    <template v-if="ready"> <slot></slot> </template>

    </template> <script> import autoResize /autoResize.js' export default { name: 'DvFullScreenContainer', mixins: [autoResize], data () { top: 0px; left: 0px; overflow: hidden; transform-origin: left top; z-index: 999; } </style> autoResize.js

    1.8K30发布于 2021-12-01
  • 来自专栏Java架构师必看

    iframe自动调整高度能在IE5里实现吗

    <script> function autoResize() { try { document.all["shit"].style.height=shit.document.body.scrollHeight } catch(e){} } </script> <iframe name="shit" src=="shit.do" style="funny:expression(<em>autoResize</em>())" align

    72520发布于 2021-03-22
  • 来自专栏图灵技术域

    wxpython显示静态文本

    wx.ST_NO_AUTORESIZE :如果使用了这个样式,那么在使用了SetLabel() 改变文本之后,静态文本控件不将自我调整尺寸。你应结合使用一个居中或右对齐的控件来保持对齐。 wx.StaticText 控件覆盖了SetLabel() ,以便根据新的文本来调整自身,除非wx.ST_NO_AUTORESIZE 样式被设置了。 要在程序中动态地改变窗口部件中的文本,而不改变该窗口部件的尺寸,就要设置wx.ST_NO_AUTORESIZE 样式。这样就防止了在文本被重置后,窗口部件自动调整尺寸到刚好包容了文本。

    3K20发布于 2021-05-21
  • 来自专栏菩提树下的杨过

    iframe高度自适应的IE解决方案

    ="text/css">         .iframestyle {             height: expression(1);             aho: expression(autoResize ()); } </style> <script type="text/javascript"> function autoResize() { try {                 document.getElementById

    1.2K80发布于 2018-01-22
  • 来自专栏iOS 开发杂谈

    谈谈 Autolayout

    比如,打印视图对象 (lldb) po 0x7f9481c9d990 <UIView: 0x7f9481c9d990; frame = (0 0; 768 359); autoresize = RM+BM 51.815107+0800 MasonryDemo[42940:1076244] self.view 的尺寸<UIView: 0x7fd8cd408960; frame = (0 0; 414 736); autoresize 41.621147+0800 MasonryDemo[43363:1089098] self.view 的尺寸<UIView: 0x7fe412f0f780; frame = (0 0; 414 736); autoresize 32.749105+0800 MasonryDemo[43419:1090641] self.view 的尺寸<UIView: 0x7fe36440b5f0; frame = (0 0; 414 736); autoresize 56.282546+0800 MasonryDemo[43500:1092911] self.view 的尺寸<UIView: 0x7fda85e0d540; frame = (0 0; 414 736); autoresize

    94220发布于 2018-09-11
  • 来自专栏青梅煮码

    移动端常见问题解决方案

    ; background:#fff; line-height:1.5; } 动态获取html根字体大小 //注意为html添加id='htmlFt' ;(() => { function autoResize document.getElementById('htmlFt').style.fontSize = (100 / 750) * window.innerWidth + 'px' } autoResize () window.onresize = function () { autoResize() } })() 样式初始化css: normalize.css – 官网下载 normalize.css

    2K10编辑于 2023-03-02
  • 来自专栏李维亮的博客

    容易好用的jQuery瀑布流插件Wookmark

    script> 复杂一点的用法: <script> jQuery(function($){ $('#tiles li').wookmark({ //这里是要实现瀑布流布局的对象 autoResize handler.wookmarkClear(); 看到比较多人在问滚动加载是怎么用的,弄个实例补充说明下: var handler = null; //定义基本属性. var options = { autoResize var options = { autoResize: true, // This will auto-update the layout when the browser window

    1.5K30发布于 2021-07-09
  • 来自专栏干货教程

    tinymce--一款非常好用的富文本编辑器 vue集成tinymce编辑器

    charmap hr nonbreaking insertdatetime advlist lists wordcount imagetools textpattern autosave bdmap autoresize insertdatetime"; import "tinymce/plugins/imagetools"; import "tinymce/plugins/autosave"; import "tinymce/plugins/autoresize insertdatetime"; import "tinymce/plugins/imagetools"; import "tinymce/plugins/autosave"; import "tinymce/plugins/autoresize charmap hr nonbreaking insertdatetime advlist lists wordcount imagetools textpattern autosave bdmap autoresize

    41.1K114发布于 2020-06-22
  • 来自专栏技术大杂烩

    【问题解决】解决 ECharts 图表窗口自适应与数据不渲染问题

    图表并不会随着窗口大小的变化而变化,如下所示:为了实现图表的窗口自适应功能,我们需要监听窗口的大小变化,并且同时调整图表的大小,代码如下所示:mounted() { this.initChart() if (this.autoResize this.chart.resize() }}在上述代码中,autoResize 表示是否启动自适应功能,window.addEventListener('resize', this.resizeChart this.chart) { return } if (this.autoResize) { window.removeEventListener('resize' width: { type: String, default: "100%", }, height: { type: String, default: "500px", }, autoResize

    3K00编辑于 2024-04-16
  • 来自专栏李维亮的博客

    jquery瀑布流插件(WookMark)

    写入JS初始化 $('#tiles li').wookmark(); 参数 $('.myElements').wookmark({ align: 'center', autoResize possibleFilters: [], resizeDelay: 50, verticalOffset: undefined }); align – "left", "right", 和"center" autoResize

    2K30发布于 2021-07-09
  • 来自专栏全栈程序员必看

    iframe标签属性说明 详解[通俗易懂]

    ,在main.htm中把samper.htm文件的内容显示在一个高度为80、宽度为100%、自动显示边框的内嵌帧中 让iframe自动适应内容的高度 js代码: <script> function autoResize marginheight="0" frameborder="0" scrolling="no" width="100%" style="height:expression(1); aho:expression(autoResize

    4K20编辑于 2022-08-01
  • 来自专栏纯血鸿蒙开发-next 系统应用开发

    【02】优雅草星云物联网AI智控系统从0开发鸿蒙端适配-deveco studio-登录页面LoginView.ets完成-并且详细解释关于arkui

    ) .width(vp2.vp2(187)) .margin({ top: vp2.vp2(123) }) .autoResize ) .width(vp2.vp2(187)) .margin({ top: vp2.vp2(123) }) .autoResize 11. .autoResize(true)autoResize 是 Image 组件的一个属性方法,用于设置图片是否自动调整大小以适应容器。true 表示开启自动调整大小功能。12.

    26710编辑于 2025-04-01
  • 来自专栏全栈程序员必看

    Vue富文本编辑器_前端富文本编辑器插件

    charmap hr nonbreaking insertdatetime advlist lists wordcount imagetools textpattern autosave bdmap autoresize insertdatetime"; import "tinymce/plugins/imagetools"; import "tinymce/plugins/autosave"; import "tinymce/plugins/autoresize insertdatetime"; import "tinymce/plugins/imagetools"; import "tinymce/plugins/autosave"; import "tinymce/plugins/autoresize charmap hr nonbreaking insertdatetime advlist lists wordcount imagetools textpattern autosave bdmap autoresize

    4.3K20编辑于 2022-11-07
  • 来自专栏WordPress果酱

    WordPress 技巧:彻底关闭全高度编辑器和免打扰功能。

    wp_deregister_script('editor-expand'); }); add_filter('tiny_mce_before_init', function($init){ unset($init['wp_autoresize_on

    34220编辑于 2023-04-14
  • 来自专栏harmonyos从入门到精通

    67.Harmonyos NEXT 图片预览组件之性能优化策略

    app.string.imageviewer_image_default_height") : undefined) .aspectRatio(this.imageWHRatio) .objectFit(ImageFit.Cover) .autoResize y: this.imageOffsetInfo.currentY })组件使用了多种渲染优化技术:按需设置宽高:只设置一个维度,另一个通过aspectRatio自动计算禁用自动调整大小:设置autoResize

    25600编辑于 2025-03-14
  • 来自专栏若城技术专栏

    67.Harmonyos NEXT 图片预览组件之性能优化策略

    app.string.imageviewer_image_default_height") : undefined) .aspectRatio(this.imageWHRatio) .objectFit(ImageFit.Cover) .autoResize this.imageOffsetInfo.currentY }) 组件使用了多种渲染优化技术: 按需设置宽高:只设置一个维度,另一个通过aspectRatio自动计算 禁用自动调整大小:设置autoResize

    16500编辑于 2025-03-15
  • 来自专栏云原生布道专栏

    【IOS开发进阶系列】IOS常用开发技巧专题

    0x7b6921f0>; layer = <UIWindowLayer: 0x7b691e00>>    | <UIView: 0x7c078b30; frame = (0 0; 320 480); autoresize autoresizesSubviews = NO; layer = <CALayer: 0x7c078440>>    |    | <UIView: 0x7c078ca0; frame = (10 87; 145 145); autoresize [self.view recursiveDescription]可以看到当前view下的ui结构,示例如下: <UIView: 0x7ca8ceb0; frame = (0 0; 600 600); autoresize autoresizesSubviews = NO; layer = <CALayer: 0x7ca8cb30>>    | <UIView: 0x7ca73890; frame = (10 87; 285 285); autoresize autoresizesSubviews = NO; layer = <CALayer: 0x7ca89200>>    | <UIView: 0x7ca7f520; frame = (305 87; 285 285); autoresize

    1.4K40编辑于 2023-10-16
  • 来自专栏木头编程 - moTzxx

    TinyMCE 富文本编辑器的使用实例指导

    nonbreaking anchor insertdatetime advlist lists wordcount imagetools textpattern autosave bdmap indent2em autoresize

    2.7K30发布于 2020-09-07
  • 领券