使用阴影设计 jQuery-ui-dialog 的样式

发布于 2024-12-28 13:32:31 字数 424 浏览 0 评论 0原文

我需要用阴影设计 jQuery-ui-dialog 的样式。我有一个示例,其中对话框/弹出窗口使用嵌套 div 进行样式设置。每个角都有一张图片,每条边都有一条线,提供了高度和宽度的变化。 我的第一个解决方案是为标题提供一个图像,为内容提供一个长图像,根据对话框中的内容量进行剪切。这提供了元素高度的可变性,但不提供元素宽度的可变性。

http://www.pictureupload.de/originals/pictures/230112103022_popup-example.jpg

这就是它应该的样子。 有什么想法或者比 jQuery-ui 更好的可样式对话框/弹出窗口吗?

I need to style a jQuery-ui-dialog with shadows. I have a sample in which the dialog/popup is styled with nested divs. A picture for each corner and a line for each side which provides the variability in heigth and width.
My first solution was to give the header an image and the content a long one, which is cut depending on how much content is in the dialog. This provides variability in height, but not in width of the element.

http://www.pictureupload.de/originals/pictures/230112103022_popup-example.jpg

This is what it should look like.
Any ideas or a better stylable dialog/popup than the one from jQuery-ui?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

榆西 2025-01-04 13:32:31

尝试这样的事情: http://jsfiddle.net/2kj9G/1/

Try something like this: http://jsfiddle.net/2kj9G/1/

夏末的微笑 2025-01-04 13:32:31

还可以使用 jquery ui 对话框的 dialogClass 属性来赋予一个类,并赋予 ui 的影子类 ui-widget-shadow

$("#editPanel").dialog({
   width: 400,
   modal: true, 
   dialogClass: 'ui-widget-shadow'
});

You can also use jquery ui dialog's dialogClass property to give a class, and give ui's shadow class ui-widget-shadow.

$("#editPanel").dialog({
   width: 400,
   modal: true, 
   dialogClass: 'ui-widget-shadow'
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文