gpt4 book ai didi

java - 我如何在 java 中使用 swing 在 jeditorpane 中的超链接上添加悬停效果

转载 作者:太空宇宙 更新时间:2023-11-04 16:13:14 25 4
gpt4 key购买 nike

使用 Hyperlink in jEditorPane链接,我设法在 jEditorPane 中获取超链接。

但现在我想为超链接添加悬停效果。我尝试使用

应用 CSS
MyHTMLEditorKit kit = new MyHTMLEditorKit();
setEditorKitForContentType("text/html", kit);
addHyperlinkListener(createHyperlinkListener());
StyleSheet css= kit.getStyleSheet();
css.addRule("a { color: red;}");

其中 MyHTMLEditorKit 扩展了 HTMLEditorKit。我也试过遵循 CSS,但没有成功。

a:hover{color:red;}

此外,我在超链接中尝试了 onmouseover="this.style.color='red'" 属性,但即使它也没有用。

那么如何在jEditorPane中实现超链接的onhover效果呢?

最佳答案

这是我的版本,但似乎不是一个好的解决方案。所以我想看看是否有人有更简洁的方法。

import java.awt.*;
import java.util.*;
import javax.swing.*;
import javax.swing.event.*;
import javax.swing.text.*;
import javax.swing.text.html.*;

public class HoverEffectTest {
private static final String SO = "http://stackoverflow.com/";
private final String s = "<a href='%s' color='%s'>%s</a><br>";
private final String s1 = String.format(s + "aaaaaaaaaaaaaa<br>", SO, "blue", SO);
private final String s2 = String.format(s + "cccc", SO, "#0000FF", "bbbbbbbbbbb");
private final JEditorPane editor = new JEditorPane(
"text/html", "<html>" + s1 + s2);
private JComponent makeUI() {
editor.setEditable(false);
//@see: BasicEditorPaneUI#propertyChange(PropertyChangeEvent evt) {
// if ("foreground".equals(name)) {
editor.putClientProperty(JEditorPane.HONOR_DISPLAY_PROPERTIES, Boolean.TRUE);
editor.addHyperlinkListener(new HyperlinkListener() {
@Override public void hyperlinkUpdate(HyperlinkEvent e) {
if (e.getEventType() == HyperlinkEvent.EventType.ENTERED) {
setElementColor(e.getSourceElement(), "red");
} else if (e.getEventType() == HyperlinkEvent.EventType.EXITED) {
setElementColor(e.getSourceElement(), "blue");
} else if (e.getEventType() == HyperlinkEvent.EventType.ACTIVATED) {
Toolkit.getDefaultToolkit().beep();
}
//I don't understand why this is necessary...
//??? call BasicTextUI#modelChanged() ???
editor.setForeground(Color.WHITE);
editor.setForeground(Color.BLACK);
}
});
return new JScrollPane(editor);
}
private void setElementColor(Element element, String color) {
AttributeSet attrs = element.getAttributes();
Object o = attrs.getAttribute(HTML.Tag.A);
if (o instanceof MutableAttributeSet) {
MutableAttributeSet a = (MutableAttributeSet) o;
a.addAttribute(HTML.Attribute.COLOR, color);
}
}
public static void main(String... args) {
EventQueue.invokeLater(new Runnable() {
@Override public void run() {
createAndShowGUI();
}
});
}
public static void createAndShowGUI() {
JFrame f = new JFrame();
f.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
f.getContentPane().add(new HoverEffectTest().makeUI());
f.setSize(320, 240);
f.setLocationRelativeTo(null);
f.setVisible(true);
}
}

关于java - 我如何在 java 中使用 swing 在 jeditorpane 中的超链接上添加悬停效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33820178/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com