посмотри на них: они ничего не знают, не понимают, не видят. включи мозги. ты заканчивал не хуйню, чтобы так мыслить и верить всему, что тебе говорят. культура потребления достигла своего апогея, власти танцуют на наших костях. тебе не страшно, что будет дальше? мне страшно. страшно, понимаешь? я не хочу жить в таком мире. я хочу его изменить. мы не должны бояться одни.
слышишь?
пусть они боятся за нас.
я хочу видеть страх в их глазах.
блаблабла
Сообщений 1 страница 7 из 7
Поделиться12022-11-27 20:59:41
Поделиться32023-01-16 05:12:29
/* плеер */
*:focus {
outline: none;
}
#app-cover {
position: absolute;
top: 295px;
right: 610px;
left: 0;
width: 351px;
height: 75px;
margin: -4px auto;
}
#player {
position: relative;
height: 100%;
z-index: 3;
}
#player-track {
position: absolute;
top: 0;
right: 15px;
left: 1px;
height: 40px;
width: 106px;
padding: 2px 7px 9px 78px;
background-color: #ffffff45;
border-radius: 0px 0px 0 0;
transition: 0.3s ease top;
z-index: 1;
}
#player-track.active {
top: -48px;
}
#album-name {
color: #ffffff;
font-size: 10px;
font-weight: 500;
font-family: 'Helvetica';
text-transform: lowercase;
letter-spacing: 1px;
}
#track-name {
color: #ffffff;
font-size: 9px;
margin: 0px 0 2px 0;
text-transform: lowercase;
font-family: 'Helvetica';
letter-spacing: 1px;
}
#track-time {
height: 12px;
margin-bottom: 3px;
overflow: hidden;
}
#current-time {
float: left;
}
#track-length {
float: right;
}
#current-time,
#track-length {
color: #fff;
font-size: 7px;
background-color: #ffffff00;
border-radius: 1px;
transition: 0.3s ease all;
}
#track-time.active #current-time,
#track-time.active #track-length {
color: #000000;
background-color: transparent;
}
#s-area,
#seek-bar {
position: relative;
height: 1px;
border-radius: 1px;
}
#s-area {
background-color: #fff;
cursor: pointer;
}
#ins-time {
position: absolute;
top: -29px;
color: #fff;
font-size: 12px;
white-space: pre;
padding: 5px 6px;
border-radius: 4px;
display: none;
}
#s-hover {
position: absolute;
top: 0;
bottom: 0;
left: 0;
opacity: 0.2;
z-index: 2;
}
#ins-time,
#s-hover {
background-color: #3b3d50;
}
#seek-bar {
content: "";
position: absolute;
top: 0;
bottom: 0;
left: 0;
width: 0;
background-color: #fd6d94;
transition: 0.2s ease width;
z-index: 1;
}
#player-content {
position: relative;
height: 50px;
width: 190px;
background-color: #ffffff;
border: #aeadad 1px solid;
border-radius: 0px;
z-index: 2;
}
#album-art {
osition: absolute;
top: -13px;
width: 50px;
height: 50px;
margin-left: 13px;
transform: rotateZ(0);
transition: 0.3s ease all;
box-shadow: 0 0 0 3px #ffffff;
border-radius: 50%;
overflow: hidden;
/* filter: grayscale(100%); */
}
#album-art.active {
top: -60px;
box-shadow: 0 0 0 4px #fff7f7, 0 30px 50px -15px #afb7c1;
}
#album-art img {
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
z-index: -1;
}
#album-art img.active {
opacity: 1;
z-index: 1;
}
#album-art.active img.active {
z-index: 1;
animation: rotateAlbumArt 3s linear 0s infinite forwards;
}
@keyframes rotateAlbumArt {
0% {
transform: rotateZ(0);
}
100% {
transform: rotateZ(360deg);
}
}
#buffer-box {
position: absolute;
top: 50%;
right: 0;
left: 0;
height: 13px;
color: #1f1f1f;
font-size: 13px;
font-family: Helvetica;
text-align: center;
font-weight: bold;
line-height: 1;
padding: 6px;
margin: -12px auto 0 auto;
background-color: rgba(255, 255, 255, 0.19);
opacity: 0;
z-index: 2;
}
#album-art img,
#buffer-box {
transition: 0.1s linear all;
}
#album-art.buffering img {
opacity: 0.25;
}
#album-art.buffering img.active {
opacity: 0.8;
filter: blur(2px);
-webkit-filter: blur(2px);
}
#album-art.buffering #buffer-box {
opacity: 1;
}
#player-controls {
width: 93px;
height: 100%;
margin: 21px -12px -18px 94px;
/* float: right; */
overflow: hidden;
}
.control {
width: 30px;
float: left;
padding: 4px 0px;
}
#player .button {
width: 16px;
height: 16px;
padding: 0px;
background-color: #fff0;
border-radius: 0px;
cursor: pointer;
.button i {
display: block;
color: #000;
font-size: 8px;
text-align: center;
line-height: 1;
}
.button,
.button i {
transition: 0.2s ease all;
}
.button:hover {
background-color: #d6d6de;
}
.button:hover i {
color: #fff;
}
Поделиться42023-01-16 05:14:08
<!-- аудиоплеер -->
<script type="text/javascript" src="https://forumstatic.ru/files/001b/cd/48/25637.js?v=1"></script>
<!-- плеер -->
<div id="app-cover">
<div id="bg-artwork"></div>
<div id="bg-layer"></div>
<div id="player">
<div id="player-track">
<div id="album-name"></div>
<div id="track-name"></div>
<div id="track-time">
<div id="current-time"></div>
<div id="track-length"></div>
</div>
<div id="s-area">
<div id="ins-time"></div>
<div id="s-hover"></div>
<div id="seek-bar"></div>
</div>
</div>
<div id="player-content">
<div id="album-art">
<img src="https://raw.githubusercontent.com/himalayasingh/music-player-1/master/img/_1.jpg" class="active" id="_1">
<img src="https://raw.githubusercontent.com/himalayasingh/music-player-1/master/img/_2.jpg" id="_2">
<img src="https://raw.githubusercontent.com/himalayasingh/music-player-1/master/img/_3.jpg" id="_3">
<img src="https://raw.githubusercontent.com/himalayasingh/music-player-1/master/img/_4.jpg" id="_4">
<img src="https://raw.githubusercontent.com/himalayasingh/music-player-1/master/img/_5.jpg" id="_5">
<div id="buffer-box">Buffering ...</div>
</div>
<div id="player-controls">
<div class="control">
<div class="button" id="play-previous">
<i class="fas fa-backward"></i>
</div>
</div>
<div class="control">
<div class="button" id="play-pause-button">
<i class="fas fa-play"></i>
</div>
</div>
<div class="control">
<div class="button" id="play-next">
<i class="fas fa-forward"></i>
</div>
</div>
</div>
</div>
</div>
</div>
Поделиться52023-01-19 15:49:39
fdfdfdfgsdfgsdg