要指定或覆盖 jQuery 图标的颜色,您可以使用 CSS 样式。以下是一个简单的示例,展示了如何为 jQuery 图标的颜色添加自定义样式。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>jQuery Icon Color</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
</head>
<body>
<!-- Your HTML content here -->
</body>
</html>
.ui-icon {
background-image: none !important;
}
.ui-icon-custom:before {
content: '\f005'; /* 使用 Font Awesome 图标,例如:颜色为红色的星形图标 */
font-family: "Font Awesome 5 Free";
font-weight: 900;
color: red;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>jQuery Icon Color</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<style>
.ui-icon {
background-image: none !important;
}
.ui-icon-custom:before {
content: '\f005';
font-family: "Font Awesome 5 Free";
font-weight: 900;
color: red;
}
</style>
</head>
<body>
<!-- Your HTML content here -->
</body>
</html>
<span class="ui-button-icon-primary ui-icon ui-icon-custom"></span>
<span class="ui-button-text">Custom Icon</span>
</button>
通过以上步骤,您可以为 jQuery 图标自定义颜色。
没有搜到相关的沙龙
领取专属 10元无门槛券
手把手带您无忧上云