TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

South Park in CSS3

11 点作者 dmuino超过 13 年前

1 comment

omgmog超过 13 年前
Looks nice, but instead of using dreamweaver MM_ javascript functions to show/hide layers, why not use PURE css :hover?<p>Something like:<p>#stan #stanTeteOeilGaucheToucheTrait { display:none; } #stan:hover #stanTeteOeilGaucheToucheTrait { display:block; }<p>and so on for each bit you are toggling, or even group the toggled layers into one div and show/hide that on hover:<p>#stan .toggledLayers { display:none; } #stan:hover .toggledLayers { display:block; }<p>Would reduce the amount of redundant code :)<p>(hope yc doesn't destroy my comment)