SCP-CN-2916

评分: +16+x

:root {
    --timeScale: 1;
    --timeDelay: 0s;
}
 
/* Converting middle divider from box-shadow to ::before pseudo-element */
.anom-bar > .bottom-box { box-shadow: none!important; }
.anom-bar > .bottom-box::before {
    position: absolute;
    content: " ";
    width: 100%;
    height: 0.5rem;
    background-color: rgb(var(--black-monochrome, 12, 12, 12));
    transform: translateY(-0.74rem);
}
 
/* DIVIDER */
.anom-bar > .bottom-box::before {
    animation-name: divider;
    animation-duration: calc(0.74s * var(--timeScale));
    animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.32,.38,.39,.94);
    animation-fill-mode: backwards;
}
 
/* CLASSIFIED LEVEL BARS */
div.top-center-box  > * {
    animation-name: bar;
    animation-duration: calc(0.45s * var(--timeScale));
    animation-iteration-count: 1;
    animation-timing-function: ease-out;
    animation-fill-mode: backwards;
}
div.top-center-box > :nth-child(1) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(2) { animation-delay: calc(0.32s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(3) { animation-delay: calc(0.45s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(4) { animation-delay: calc(0.61s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(5) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(6) { animation-delay: calc(0.95s * var(--timeScale) + var(--timeDelay)); }
 
/* TOP TEXT */
div.top-left-box, div.top-right-box {
    clip-path: polygon( 0% -50%, 150% -50%, 150% 100%, 0% 100%);
}
 
div.top-left-box > *, div.top-right-box > * {
    position: relative;
    animation-name: bottomup;
    animation-duration: calc(0.65s * var(--timeScale));
    animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: ease-out;
    animation-fill-mode: backwards;
}
 
/* CONTAINMENT, DISRUPTION, RISK CLASSES */
div.text-part > * {
    clip-path: polygon( 0% 0%, 100% 0%, 100% 100%, 0% 100%);
    animation-name: expand2;
    animation-duration: calc(0.5s * var(--timeScale));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
div.text-part > :nth-child(1) {
    animation-name: expand1;
}
div.text-part > :nth-child(1) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); }
div.text-part > :nth-child(2) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); }
div.text-part > :nth-child(3) { animation-delay: calc(0.86s * var(--timeScale) + var(--timeDelay)); }
 
div.main-class::before, div.main-class::after {
    animation-name: iconslide;
    animation-duration: calc(0.45s * var(--timeScale));
    animation-delay: calc(0.8s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
 /* BOTTOM TEXT */
div.main-class > *,  div.disrupt-class > *, div.risk-class > * {
    animation-name: flowIn;
    animation-duration: calc(0.42s * var(--timeScale));
    animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: ease-out;
    animation-fill-mode: backwards;
}
 
/* DIAMOND */
div.arrows {
    animation-name: arrowspin;
    animation-duration: calc(0.7s * var(--timeScale));
    animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
 
div.quadrants > * {
    animation-name: fade;
    animation-duration: calc(0.3s * var(--timeScale));
    animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
 
div.top-icon, div.right-icon, div.left-icon, div.bottom-icon {
    animation-name: nodegrow;
    animation-duration: calc(0.4s * var(--timeScale));
    animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
div.diamond-part {
    clip-path: polygon( -10% 0.37%, 120% 0.37%, 120% 100%, -10% 100%);
    animation-name: diamondBorder;
    animation-duration: calc(0.8s * var(--timeScale));
    animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.32,.38,.39,.94);
    animation-fill-mode: backwards;
    will-change: box-shadow;
}
 
/* MOBILE QUERY */
@media (max-width: 480px ) {
    .anom-bar > .bottom-box::before {
        display:none;
    }
    .anom-bar > .bottom-box {
        box-shadow: 0 -0.5rem 0 0 rgb(var(--black-monochrome, 12, 12, 12))!important;
    }
    div.top-center-box  > * {
        animation-name: bar-mobile;
        animation-duration: calc(0.9s * var(--timeScale));
    }
    div.top-center-box > :nth-child(1) { animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(2) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(3) { animation-delay: calc(0.3s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(4) { animation-delay: calc(0.4s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(5) { animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(6) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); }
 
}
 
/*-------------------------*/
 
@keyframes divider {
    from { max-width: 0%;  }
    to { max-width: 100%; }
}
 
@keyframes bar {
    from { max-width: 0%; }
    to { max-width: 100%; }
}
@keyframes bar-mobile {
    from { max-height: 0%; }
    to { max-height: 100%; }
}
 
@keyframes bottomup {
    from { top: 100px; }
    to { top: 0; }
}
 
@keyframes expand1 {
    from { opacity: 0; clip-path: inset(0 calc(100% - 0.75rem) 0 0);}
    to { opacity: 1; clip-path: inset(0);}
}
@keyframes iconslide {
    from { opacity: 0; transform: translateX(-5rem);}
    to { opacity: 1; transform: translateX(0);}
}
 
@keyframes expand2 {
    from { opacity: 0; max-width: 1%;}
    to { opacity: 1; max-width: 100%;}
}
@keyframes fade {
    from { opacity: 0;}
    to { opacity: 1;}
}
 
@keyframes flowIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
 
@keyframes arrowspin {
    from { clip-path: circle(0%); transform: rotate(135deg); }
    to { clip-path: circle(75%); transform: rotate(0deg); }
}
@keyframes nodegrow {
    from { transform: scale(0);}
    to {  transform: scale(1);}
}
@keyframes diamondBorder {
    from { box-shadow: -0.5rem -20rem 0 0 rgb(var(--black-monochrome, 12, 12, 12)); }
    to { box-shadow: -0.5rem 0 0 0 rgb(var(--black-monochrome, 12, 12, 12)); }
}
项目编号:項目編號:CN-2916
等级等級2
收容等级:收容等級:
safe
次要等级:次要等級:
none
扰动等级:擾動等級:
vlam
风险等级:風險等級:
需谨慎


项目编号:SCP-CN-2916

项目等级:Safe

特殊收容措施:SCP-CN-2916及其所处公路路段已被完全封锁。数台监控摄像仪被安置于SCP-CN-2916内部,用以对其全天候监控。进入SCP-CN-2916需获得Ⅱ级及以上许可。

描述:SCP-CN-2916是一段长约0.9千米的交通隧道,位于██省██市云水县南部一座山体中。SCP-CN-2916始建于1998年,通体由混凝土浇筑而成,由于年代久远,隧道内壁老化严重,当地政府已在███年将其封闭停用。

自收容实施以来,基金会通过摄像仪周期性地观察到SCP-CN-2916内部涌入大量来源未知的水,并夹带明显不属于SCP-CN-2916的建筑物残骸。具体原因不明。

    • _

    日记1:

    {$side-text}

    {$upon-text}

    6月18日 雨


    大水把我们家房子冲坏了,窗户坏了,墙也坏了,房顶也找不到了。我的玩具、好吃的什么都不见了,只有日记本还在。

    妈妈告诉我要每天写日记,今天也要的吧。家里什么都没了,全被水冲走了。我不知道我现在在哪里,好多大树,房子都倒了 ,好多人也也被水冲走了。爸爸妈妈我好冷,好害怕,你们现在在哪?

    爸爸妈妈我好想你们。

    {$under-text}

    {$side-text}


    日记2:

    {$side-text}

    {$upon-text}

    6月19日 雨


    今天是第二天,雨下得好大,我全身都被淋湿了。我现在在家后面的山坡上,大水已经把下面全淹了,我哪都走不了。

    今天我跑上山的时候还不小心摔了一跤,腿破了,流了好多血。我已经一整天没吃东西,感觉已经没有力气了。好想睡觉,我是不是快要死了?

    爸爸妈妈,你们在哪?救救我。

    {$under-text}

    {$side-text}


    日记3:

    {$side-text}

    {$upon-text}

    6月20日 雨


    我还没死,有一个叔叔救了我。他给我弄了伤口,抹上了药,还给我好多衣服和吃的。他还叫我在这边等他,不要乱动,他一会就回来救我。爸爸妈妈说不要接受陌生人给的东西,但是我觉得他不是坏人,我吃了他给的东西也没有中毒。

    我在这里留了个纸条,还把一些吃的藏在这边了,希望有跟我一样的人来到这里能发现它们,说不定还能让爸爸妈妈找到我。

    爸爸妈妈你们还好吗?我这里有好多吃的,真想和你们一起吃。

    {$under-text}

    {$side-text}


    日记4:

    {$side-text}

    {$upon-text}

    6月21日 阴


    那个叔叔回来救我了,他把我带到了一个营地里,里面有好多和我一样的小孩,他们也找不到爸爸妈妈了。我告诉了那个叔叔我爸爸妈妈的名字,他说不认识他们,还答应说一定会帮我找到他们。

    爸爸妈妈你们不用担心我,这里很暖和,穿着橙色衣服的叔叔阿姨们把我照顾得很好,给我了好多吃的。我在这里也认识了好多新朋友,我们在一起做游戏,真想介绍给你们。

    我想我们的家了。对不起爸爸妈妈,我以前经常不听你们的话。我保证以后再也不调皮,再也不挑食,再也不惹你们生气了。

    爸爸妈妈我真的好想你们。

    爸爸妈妈我永远爱你们。

    smile.png

    {$under-text}

    {$side-text}


除非特别注明,本页内容采用以下授权方式: Creative Commons Attribution-ShareAlike 3.0 License