jquery - 透明的 jQuery UI 对话框

标签 jquery html css jquery-ui

有人知道如何使 ui 对话框透明吗?

最佳答案

创建一个类:

   .transparent_class {
        filter:alpha(opacity=50); /* for IE4 - IE7 */
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; /* IE8 */
        -moz-opacity:0.5;
        -khtml-opacity: 0.5;
        opacity: 0.5;
   }

并将此类添加到您的 UI 元素。

their blog. 上阅读有关 MS IE 过滤器的更多信息

关于jquery - 透明的 jQuery UI 对话框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4623817/

相关文章:

php - 在 While 中使用循环计数器

jquery - 如何在页面加载时将网页内容加载到 div 中?

javascript - 如何使此scrollTop功能适合移动设备

jquery - 图像和标签未正确对齐

html - 为什么将 3D 转换应用到父 div 没有做它应该做的事?

html - 如何创建全屏material-ui网格?

css - 使用 CSS3 nth-child 来交替 DIV 标签内图像的 float

javascript - 多个 .ready() 函数绑定(bind)错误

jquery - 更改 jquery ui 选项卡的 css

javascript - 如何在html文本区域逐行阅读文本?