User:物灵/时钟样式.css:修订间差异

此后如竟没有炬火,我便是唯一的光。
跳转到导航 跳转到搜索
(建立内容为“@keyframes spin { 0% { transform: rotate(0deg); } 50% { transform: rotate(180deg); } 100% { transform: rotate(360deg); } } #spin-wrapper, #spin-second…”的新页面)
 
(物灵将页面User:物灵/时钟样式.css的内容模型从“CSS”更改为“已过滤的CSS”)
标签内容模型更改

2022年6月10日 (五) 11:57的版本

@keyframes spin {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
    100% { transform: rotate(360deg); }
}
#spin-wrapper, #spin-second, #spin-minute, #spin-hour {
    position: relative;
    display: inline-block;
    width: 300px;
    height: 300px;
}
#spin-second-wrapper, #spin-minute-wrapper, #spin-hour-wrapper {
    position: absolute;
}
#spin-second {
    animation: spin 60s linear infinite;
    background: red;
    clip-path: polygon(48% 50%, 52% 50%, 52% 10%, 48% 10%);
}
#spin-minute {
    animation: spin 3600s linear infinite;
    background: black;
    clip-path: polygon(48% 50%, 52% 50%, 52% 20%, 48% 20%);
}
#spin-hour {
    animation: spin 216000s linear infinite;
    background: black;
    clip-path: polygon(48% 50%, 52% 50%, 52% 30%, 48% 30%);
}
#spin-wrapper {
    background: yellow;
    clip-path: circle(50%);
}