池鹤 发表于 2026-8-5 22:06:59

【We Belong Together】- Ni/Co / Ni/Co's Covers

<!-- DZ音乐卡片|屏蔽附件悬浮弹窗+点击放大弹窗|黑胶旋转 -->
<style>
/* ==========【全局可调参数区|全部配置在这里修改】========== */
.music-card-wrap{
    --card-bg: #19191f;
    --text-color: #f0f0f0;
    --text-sub-color: #aaaaaa;
    --border-color: #333338;
    --card-radius: 30px;

    --card-margin-top: 60px;
    --card-margin-bottom: 60px;

    --card-width: 500px;
    --cover-size: 350px;
    --vinyl-border-width: 30px;
    --vinyl-opacity: 0.35;

    --player-radius: 10px;
    --player-height: 1px;

    --lyric-width: 94%;
    --lyric-height: 120px;
    --lyric-text-color: #dddddd;
    --lyric-fontsize: 13px;
    --lyric-lineheight: 24px;
    --lyric-speed: 70s;
    --lyric-margin: 14px auto;
    --lyric-text-align: center;

    --fold-title-fontsize: 14px;
    --fold-content-fontsize: 14px;
    --fold-bg: #26262c;
    --fold-border-color: #444448;
    --fold-title-color: #eeeeee;
    --fold-content-color: #cccccc;

    --rotate-duration: 20s;
    --hover-move-time: 0.25s;
    --hover-move-height: -8px;

    --font-family: "Microsoft Yahei",sans-serif;

    width: var(--card-width);
    margin: var(--card-margin-top) auto var(--card-margin-bottom) auto;
    background: var(--card-bg);
    border-radius: var(--card-radius);
    padding: 20px;
    color: var(--text-color);
    font-family: var(--font-family);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 18px rgba(0,0,0,0.35);
    box-sizing: border-box;
    transition: transform var(--hover-move-time) ease, box-shadow var(--hover-move-time) ease;
}
.music-card-wrap:hover{
    transform: translateY(var(--hover-move-height));
    box-shadow: 0 8px 24px rgba(0,0,0,0.45);
}

.vinyl-cover-box{
    width: var(--cover-size);
    height: var(--cover-size);
    margin: 0 auto 16px auto;
    position: relative;
}
.vinyl-ring{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #000;
    opacity: var(--vinyl-opacity);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* 1.拦截DZ自动生成的zoom放大链接,禁止点击弹窗 */
.vinyl-cover-box a.zoom{
    pointer-events: none !important;
    text-decoration: none !important;
    display: block !important;
}
/* 2.屏蔽附件hover弹出的「下载附件/保存相册」悬浮提示框 */
.vinyl-cover-box .attachinfo,
.vinyl-cover-box .tip,
.vinyl-cover-box .attachment_pop,
.vinyl-cover-box {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.vinyl-cover-box img{
    width: calc(100% - var(--vinyl-border-width)*2);
    height: calc(100% - var(--vinyl-border-width)*2);
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: var(--vinyl-border-width);
    left: var(--vinyl-border-width);
    z-index: 2;
    cursor: default;
    display:block;
}
@keyframes rotateDisc {
    from{transform: rotate(0deg);}
    to{transform: rotate(360deg);}
}
.rotate-active{
    animation: rotateDisc var(--rotate-duration) linear infinite;
}

.music-player-box{
    width: 100%;
    height: var(--player-height);
    margin-bottom: 1px;
    border-radius: var(--player-radius);
    overflow: hidden;
    background: transparent !important;
}
.music-player-box iframe{
    width: 100%;
    height: 100%;
    border: 0;
    margin:0;
    padding:0;
    display:block;
}

.song-name{
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin:6px 0;
    color: var(--text-color);
}
.song-author{
    font-size:14px;
    color: var(--text-sub-color);
    text-align: center;
    margin-bottom:16px;
}

.lyric-wrap{
    position: relative;
    height: var(--lyric-height);
    overflow: hidden;
    margin: var(--lyric-margin);
}
.lyric-wrap::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    z-index:2;
    background:linear-gradient(to bottom, var(--card-bg) 0%, transparent 20%, transparent 80%, var(--card-bg) 100%);
}
.lyric-scroll{
    width: var(--lyric-width);
    margin:0 auto;
}
.lyric-content{
    width:100%;
    font-size: var(--lyric-fontsize);
    color: var(--lyric-text-color);
    line-height: var(--lyric-lineheight);
    text-align: var(--lyric-text-align);
    white-space: pre-line !important;
    animation: scrollLyricVertical var(--lyric-speed) linear infinite;
}
@keyframes scrollLyricVertical{
    from{transform: translateY(0);}
    to{transform: translateY(-50%);}
}

.fold-panel{
    border: 1px solid var(--fold-border-color);
    border-radius: 12px;
    overflow: hidden;
    background:var(--fold-bg);
}
.fold-title{
    padding:18px 22px;
    cursor: pointer;
    font-size: var(--fold-title-fontsize);
    display:flex;
    justify-content: space-between;
    align-items:center;
    user-select:none;
    color:var(--fold-title-color);
}
.fold-title .arrow{
    font-size: var(--fold-title-fontsize);
    transition: transform 0.6s ease;
}
.fold-content{
    padding:0 22px;
    font-size: var(--fold-content-fontsize);
    line-height:1.6;
    max-height:0;
    overflow:hidden;
    transition: max-height 0.35s ease, padding 0.6s ease;
    color:var(--fold-content-color);
}
.fold-content.open{
    max-height:600px;
    padding:0 22px 18px 22px;
}
</style>

<div class="music-card-wrap">
    <div class="vinyl-cover-box">
      <div class="vinyl-ring"></div>
<!-- =========替换引号内为图片真实直链========= -->

    </div>

    <div class="music-player-box">
<iframe frameborder="no" border="0" marginwidth="0" marginheight="0" width=298 height=1 src="//music.163.com/outchain/player?type=2&id=2032342458&auto=1&height=32"></iframe>
    </div>

    <div class="song-name">We Belong Together/div>
    <div class="song-author">歌手:Ni/Co / Ni/Co's Covers</div>

    <div class="lyric-wrap">
      <div class="lyric-scroll">
            <div class="lyric-content">
Miller music
I didn't mean it
我不是那个意思
When I said I didn't love you so
当我我说我不爱你的时候
I should have held on tight
我应该紧紧抓住
I never should've let you go
我真不该让你走
I didn't know nothing
我什么都不知道
I was stupid
我是个笨蛋
I was foolish
我真傻
I was lying to myself
我一直在自欺欺人
I could not fathom that I would ever
我无法理解我怎么会
Be without your love
没有你的爱
Never imagined I'd be
从未想过我会
Sitting here beside myself
坐在这里,我感到非常难过
Cause I didn't know you
因为我本来就不认识你
Cause I didn't know me
因为我那时不懂我
But I thought I knew everything
但我以为我什么都知道
I never felt
我从未感觉过
The feeling that I'm feeling now
我现在的感觉
that I don't hear your voice
那我听不到你的声音
Or have your touch and kiss your lips
或者拥有你的触碰和亲吻你的双唇
Cause I don't have a choice
因为我别无选择
Oh What I wouldn't give
我愿意付出任何代价
To have you lying by my side
有你在我身边
Right here cause baby
就在这里因为你
When you left I lost a part of me
当你离开时,我失去了一部分的自己
It's still so hard to believe
这仍然难以置信
Come back baby please
回来吧,宝贝,求你
Cause we belong together
因为我们属于彼此
Who else am I gonna lean on
我还能依靠谁
When times get rough
当事情变得艰难时
Who's gonna talk to me on the phone
谁会跟我打电话
Till the sun comes up
直到太阳升起
Who's gonna take your place
谁会取代你
There ain't nobody better
没有人比我更好
Oh baby baby we belong together
哦 宝贝 宝贝 我们属于彼此
I can't sleep at night
我晚上睡不着觉
Cause you're all on my mind
因为你在我心里
Bobby Womack's on the radio
鲍比·沃马克在电台里
Singing to me
对我唱歌
If you think you're lonely now
如果你现在觉得孤独
            </div>
      </div>
    </div>

    <div class="fold-panel">
      <div class="fold-title">
            <span>点击展开查看音乐地址内容</span>
            <span class="arrow">▼</span>
      </div>
      <div class="fold-content">
            **** Hidden Message *****
      </div>
    </div>
</div>

<script>
document.addEventListener('DOMContentLoaded',function(){
    const coverImg = document.querySelector('.vinyl-cover-box img');
    const foldTitle = document.querySelector('.fold-title');
    const foldContent = document.querySelector('.fold-content');
    const arrow = foldTitle.querySelector('.arrow');

    if(coverImg){
      coverImg.classList.add('rotate-active');
    }
    // 兜底拦截点击放大弹窗
    const zoomLink = document.querySelector('.vinyl-cover-box a.zoom');
    if(zoomLink){
      zoomLink.onclick = function(e){
            e.preventDefault();
            return false;
      }
    }
    foldTitle.addEventListener('click',function(){
      foldContent.classList.toggle('open');
      arrow.style.transform = foldContent.classList.contains('open') ? 'rotate(180deg)' : 'rotate(0deg)';
    });
});
</script>

Because 发表于 2026-8-5 22:08:59

音色绝了,多谢用心整理

青木 发表于 2026-8-5 22:56:54

歌单新增成员,谢谢楼主

蜜洛蜜洛 发表于 2026-8-5 23:38:42

一直找这首歌,终于等到

肆歌 发表于 2026-8-6 06:15:49

终于等到楼主分享音乐了,歌单绝了!

世界真细心seeu 发表于 2026-8-6 08:08:53

恰到好处的旋律,谢谢楼主

把烟灭了吧 发表于 2026-8-6 10:38:38

亲爱的 谁是你今夜的猎物

QQmcc-衍生 发表于 2026-8-6 10:59:37

适合日常循环,感谢分享

春之调音师 发表于 2026-8-6 11:28:52

循环预定,感恩楼主分享曲目

救赎 发表于 2026-8-6 12:17:49

第一次听,直接爱上,谢谢
页: [1] 2 3 4 5 6 7 8 9 10
查看完整版本: 【We Belong Together】- Ni/Co / Ni/Co's Covers