使用 PHP 在某些时候突出显示 DIV 元素?

发布于 2024-11-24 10:09:36 字数 746 浏览 3 评论 0原文

我有一个用 PHP 完成的广播电台网站,如 在 MySQL/PHP 查询中有效显示 strtotime()

它现在正在工作(新代码位于 http://pastebin.com/TyB2v18R),但只有一个问题需要解决完成:

http://pastebin.com/ZPj1uJFx

(这就是我认为它应该在一天中的某些时间呈现的方式)。

我的日程显示在以下时间:

01:00

06:00

08:00

12:00

16:00

19:00

22:00

我应该怎么做才能让它在这个脚本中的这些特定时间突出显示? ifelse 是解决方案吗?

感谢您的帮助,学到了很多东西,也得到了它的工作!

I have a radio station site done in PHP, as mentioned at Displaying strtotime() effectively in MySQL/PHP query.

It's working now (new code at http://pastebin.com/TyB2v18R), but only one issue needs to be done:

http://pastebin.com/ZPj1uJFx

(this is how I think it should render at certain times of the day).

My schedule has shows at the following times:

01:00

06:00

08:00

12:00

16:00

19:00

22:00

What should I do to get it to highlight it at these specific times in this script?
Is ifelse the solution?

Thank you for your help, learning a lot and getting it working too!

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

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

发布评论

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

评论(2

生成 HTML 时,将 CSS 类添加到应突出显示的时间。

when generating the HTML, add a CSS class to the times that should be highlighted.

嘿看小鸭子会跑 2024-12-01 10:09:36

我应该怎么做才能让它在这些特定时间突出显示
这个脚本? ifelse 是解决方案吗?

要在这些指定时间获得突出显示,您可以在这些时间使用 CSS 伪类

您的 HTML 将像这样的东西:

<div class="hightlight">Hello World</div>

您的 CSS 看起来像这样

.hightlight {
  color: yellow;
}

使用此 cide,您将突出显示 div< /代码> “你好世界”黄色。

例如,您可以看到这个 jsfiddle => http://jsfiddle.net/YdtBr/

What should I do to get it to highlight it at these specific times in
this script? Is ifelse the solution?

To get hightlighting at these specified times you could use CSS pseudo class at those times

Your HTML would something like this:

<div class="hightlight">Hello World</div>

Your CSS would look something like

.hightlight {
  color: yellow;
}

With this cide you would hightlight the div "Hello World" yellow.

You could see this jsfiddle for example => http://jsfiddle.net/YdtBr/

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