UID10000
威望值10193
贡献值9692
可可币1523616
可可花170
可可豆7697
积分1632795

小恶魔
 
- UID
- 10000
- 主题
- 20
- 积分
- 1632795
- 威望值
- 10193
- 贡献值
- 9692
- 可可币
- 1523616
- 可可花
- 170
- 可可豆
- 7697
- 在线时间
- 184 小时
- 注册时间
- 2016-10-11

|
楼主 |
发表于 2023-7-5 10:39:38
|
显示全部楼层
本帖最后由 悸动, 于 2023-7-5 10:56 编辑
- <div class="qqmcc-music-box">
- <div class="music-box-cover">
- <img src="https://www.qqmcc.net/data/attachment/album/202307/03/100215q88ctcy88hvgovvq.jpg" />
- </div>
- <div class="music-box-cd">
- <span class="img">
- <img src="https://www.qqmcc.net/data/attachment/album/202307/03/100215q88ctcy88hvgovvq.jpg" />
- </span>
- </div>
- </div>
-
- <style>
- .qqmcc-music-box {
- width: 600px;
- margin: 100px auto;
- display: flex;
- position: relative;
- }
- .qqmcc-music-box:after {
- content: '';
- position: absolute;
- bottom: 0;
- left: -50px;
- width: 100%;
- height: 43px;
- background-image: url(https://www.qqmcc.net/data/attachment/album/202307/05/101940ub3y2ohgggz79cay.png);
- background-repeat: no-repeat;
- }
- .qqmcc-music-box .music-box-cover {
- width: 305px;
- height: 315px;
- background-image: url(https://www.qqmcc.net/data/attachment/album/202307/05/101940oeyc0gydrbysacgr.png);
- background-repeat: no-repeat;
- padding: 5px;
- overflow: hidden;
- position: relative;
- z-index: 10;
- }
- .qqmcc-music-box .music-box-cover img {
- width: 297px;
- height: 299px;
- margin: 6px -2px;
- border-radius: 4px;
- }
- .qqmcc-music-box .music-box-cd {
- margin-top: 15px;
- margin-left: -170px;
- height: 290px;
- width: 290px;
- background-image: url(https://www.qqmcc.net/data/attachment/album/202307/05/104859e1zwr1vz4towl0r4.png);
- background-repeat: no-repeat;
- background-size: 100%;
- position: relative;
- animation-name: loopRoll;
- animation-timing-function: linear;
- animation-iteration-count: infinite;
- animation-duration: 5s;
- }
- @keyframes loopRoll{
- from{
- transform:rotate(0deg);
- }
- to{
- transform:rotate(360deg);
- }
- }
- .qqmcc-music-box .music-box-cd .img {
- border: 2px solid #111;
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%,-50%);
- display: block;
- width: 120px;
- height: 120px;
- overflow: hidden;
- border-radius: 50%;
-
- }
- .qqmcc-music-box .music-box-cd .img img {
- width: 100%;
- height: 100%;
- }
- </style>
复制代码 |
|