在输入上启动 CSS 动画:选中?

发布于 2024-12-29 16:52:15 字数 447 浏览 0 评论 0 原文

我已经完成了滑动使用 CSS3 的图像面板教程,并在使用 :checked 启动动画时遇到了一个小问题。这是官方演示,以及这个是我的看法(目前是 webkit 和 mozilla)。

单击时图像会发生变化,但面板不会滑动,而是在初始页面加载时滑动,这似乎是 CSS 告诉它要做的事情......有什么想法吗?

干杯。

I've done this Sliding Image Panels with CSS3 tutorial, and ran into a little issue with using :checked to initiate the animation. Here is the official demo, and this is my take (webkit and mozilla for now).

The images changes on click, but the panels won’t slide, instead they slide on initial page-load, which seems to be what the CSS is telling it to do… Any ideas?

Cheers.

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

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

发布评论

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

评论(2

悲念泪 2025-01-05 16:52:15

抱歉,是 PEBCAK。

我在末尾留下了一个逗号,就像这样 - 看到末尾的那个小逗号了吗?坏我了。


.cr-container input.cr-selector-img-1:checked ~ .cr-bgimg div span:nth-child(1),
.cr-container input.cr-selector-img-2:checked ~ .cr-bgimg div span:nth-child(2),
.cr-container input.cr-selector-img-3:checked ~ .cr-bgimg div span:nth-child(3),
.cr-container input.cr-selector-img-4:checked ~ .cr-bgimg div span:nth-child(4), {

从而使整个声明块无效。

Sorry, it was PEBCAK.

I had left a trailing comma at the end, like this - see that little comma at the end there? Bad me.


.cr-container input.cr-selector-img-1:checked ~ .cr-bgimg div span:nth-child(1),
.cr-container input.cr-selector-img-2:checked ~ .cr-bgimg div span:nth-child(2),
.cr-container input.cr-selector-img-3:checked ~ .cr-bgimg div span:nth-child(3),
.cr-container input.cr-selector-img-4:checked ~ .cr-bgimg div span:nth-child(4), {

thereby making the entire declaration block invalid.

柠北森屋 2025-01-05 16:52:15

你错过了这个:

.cr-container input.cr-selector-img-1:checked ~ .cr-bgimg div span:nth-child(1), .cr-container input.cr-selector-img-2:checked ~ .cr-bgimg div span:nth-child(2), .cr-container input.cr-selector-img-3:checked ~ .cr-bgimg div span:nth-child(3), .cr-container input.cr-selector-img-4:checked ~ .cr-bgimg div span:nth-child(4) {
    -moz-animation: 0s ease 0s normal none 1 none;
    -moz-transition: left 0.5s ease-in-out 0s;
    left: 0;
    z-index: 10;
}

you are missing this:

.cr-container input.cr-selector-img-1:checked ~ .cr-bgimg div span:nth-child(1), .cr-container input.cr-selector-img-2:checked ~ .cr-bgimg div span:nth-child(2), .cr-container input.cr-selector-img-3:checked ~ .cr-bgimg div span:nth-child(3), .cr-container input.cr-selector-img-4:checked ~ .cr-bgimg div span:nth-child(4) {
    -moz-animation: 0s ease 0s normal none 1 none;
    -moz-transition: left 0.5s ease-in-out 0s;
    left: 0;
    z-index: 10;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文