根据 WordPress 中帖子的类别,一张图像叠加层具有多种颜色

发布于 2024-11-27 03:07:58 字数 461 浏览 1 评论 0原文

我正在使用 WordPress 构建一个作品集网站。我目前在主博客上显示我的帖子的特色图像,并且在滚动/悬停图像时有一个彩色叠加层,该叠加层根据帖子所在的类别而变化。目前我正在通过使用透明的 1x1px 图像来实现这一点我的CSS中的background url()将其大小调整为图像的大小。

我想要做的是,如果帖子属于多个类别,则颜色翻转以条纹形式显示所有不同类别的颜色。例如,如果我的类别和颜色如下...

打印作品 - 绿色

网页 - 红色

移动图像 - 紫色

...并且我有一篇文章进入“打印作品”和“网页”,悬停状态应为半绿色图像上有一半红色。如果帖子属于所有三个类别,则悬停状态应为 3 种颜色(3 条条纹 – 1 条绿色、1 条红色和 1 条紫色彼此相邻)。

我在搜索中没有找到任何关于这是否可能的线索,并且不太知道从哪里开始。这是否可以实现?如果可以,仅使用 CSS 或 Jquery 可以实现吗?

I am using wordpress to build a portfolio website. I am currently showing the featured image of my post on the main blog and have a coloured overlay when rolling over/hovering the image, that changes according to the category the post is in. Currently I am doing that by using a transparent 1x1px image as background url() in my CSS resizing it to the size of the image.

What I would like to do is for the colour rollover to show all different category colours in stripes if a post is in multiple categories. For example if my categories and colours are the following...

Print Work - Green

Web - Red

Moving Image - Purple

...and I have a post that goes into 'Print work' and 'Web' the hover state should be half green and half red over the image. If a post is in all three categories the hover state should be in 3 colours (3 stripes – 1 green,1 red and 1 purple next to each other).

I haven't found any clue on whether that's possible in my searches and don't quite know where to start. Is this achievable at all and if so with using CSS only or Jquery?

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

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

发布评论

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

评论(1

抱着落日 2024-12-04 03:07:58

您可以通过设置容器 div 覆盖来实现此目的,我们将其称为 .hover_div。该 div 将保存类别的任何/所有颜色 div - 让我们称之为 .color_div。使用 foreach 循环使每个帖子的类别在 .hover_div 内创建另一个 .color_div。

使用 Jquery,用百分比设置这些 div 的宽度:

var colors = $(".color_div").length;
var color_width = 100/colors;
$(".color_div").width(color_width + "%");

这将使容器 .hover_div 中的颜色 div 大小相等。为每个 color_div 指定另一个类名以分别定位并设置颜色。

你应该已经准备好了。

You could do this by setting a container div overlay, lets call it .hover_div. This div will hold any / all of the color divs for the categories - let's call these .color_div. Make the categories for each post create another .color_div inside the .hover_div using a foreach loop.

Using Jquery, set the width for these divs witha percentage:

var colors = $(".color_div").length;
var color_width = 100/colors;
$(".color_div").width(color_width + "%");

This will make equal size color divs in the containser .hover_div. Give each of the color_divs another class name to target each and set a color.

You should be all set.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文