Template:BouncingDiv/styles.css

来自NeuroWiki
Selfice留言 | 贡献2025年1月24日 (五) 01:24的版本 (创建页面,内容为“.bouncing-container { position: relative; width: 300px; →‎父容器宽度:​ height: 300px; →‎父容器高度:​ border: 2px solid #333; overflow: hidden; margin: 20px auto; →‎居中显示:​ background-color: #f9f9f9; } .bouncing-div { position: absolute; width: 50px; height: 50px; background-color: #3498db; border-radius: 50%; →‎圆形:​ }”
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳转到导航 跳转到搜索
.bouncing-container {
  position: relative;
  width: 300px; /* 父容器宽度 */
  height: 300px; /* 父容器高度 */
  border: 2px solid #333;
  overflow: hidden;
  margin: 20px auto; /* 居中显示 */
  background-color: #f9f9f9;
}

.bouncing-div {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: #3498db;
  border-radius: 50%; /* 圆形 */
}