如何更改qwebview的背景图片、颜色和字体颜色

发布于 2024-11-16 17:27:59 字数 115 浏览 5 评论 0原文

我想更改 webview 的背景图像、颜色和字体颜色。我尝试了 setBackgroundRole 方法,但它只有很少的颜色。它没有我想要的颜色。而且我不知道如何设置字体颜色和背景图像。你有什么想法来解决这个问题吗?

I want to change my webview's background image, color and font color. I tried setBackgroundRole method but it only have few color. It doesn't have the color that I want. And I don't find how to set font color and background image. Do you have any ideas to solve this thing?

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

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

发布评论

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

评论(3

失去的东西太少 2024-11-23 17:27:59

使用html,QWebView只是QWebPage的容器,您可以在页面的html代码中设置您需要的所有内容。

Use html for that, QWebView is just a container for QWebPage, where you can set all you need in page's html code.

我的黑色迷你裙 2024-11-23 17:27:59

使用QWidget::setPalette()设置您自己的QPalette。这样你就可以为每个角色自由选择颜色。

要将图像作为背景,您必须从 QWebView 派生自己的类并覆盖我认为的 PaintEvent() 。

Use QWidget::setPalette() to set your own QPalette. With this you can freely choose colors for each role.

To have an image as a background you would have to derive your own class from QWebView and override paintEvent() I think.

秋风の叶未落 2024-11-23 17:27:59

使用setHtml函数

QString htmlhead = "<head><style>body {\n   background-color: #eee;\nbackground-image: url("+QUrl("qrc:/new/prefix1/back.png").toString()+");";
ui->webView->setHtml(htmlhead);

use setHtml function

QString htmlhead = "<head><style>body {\n   background-color: #eee;\nbackground-image: url("+QUrl("qrc:/new/prefix1/back.png").toString()+");";
ui->webView->setHtml(htmlhead);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文