Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <head>
- <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
- <link href="//fonts.googleapis.com/css?family=Work+Sans" rel="stylesheet">
- <script src="https://static.tumblr.com/2pnwama/DLppehqvd/feathericons.js"></script>
- <!-------MUSIC PLAYER BY GLENTHEMES------->
- <script src="https://dl.dropbox.com/s/vyffmps0ly6ikf4/glenplayer06.js"></script>
- <!-- scrollbox appear on hover effect made by dante~! cr appreciated @ciarispop pls dont repost on other pastebins tt__tt -->
- <style>
- /*-------MUSIC PLAYER BY GLENTHEMES-------*/
- :root {
- --Music-Player-Vinyl:#000;
- --Vinyl-Icon-Size:17px;
- --Vinyl-Spin-Speed:3.5s;
- --Music-Controls:#000;
- --Music-Controls-Size:12px;
- --Music-Title-Font-Size:11px;
- --Music-Title-Color:#000;
- }
- .glenjams-06 {
- display:none;
- position:fixed;
- z-index:99;
- margin: auto;
- }
- .pasta {
- display:flex;
- align-items:center;
- }
- .vinyl-spin {
- animation:recordspin var(--Vinyl-Spin-Speed) linear infinite;
- -webkit-animation:recordspin var(--Vinyl-Spin-Speed) linear infinite;
- -moz-animation:recordspin var(--Vinyl-Spin-Speed) linear infinite;
- -o-animation:recordspin var(--Vinyl-Spin-Speed) linear infinite;
- }
- .vinyl-pause {
- animation-play-state:paused;
- -webkit-animation-play-state:paused;
- -moz-animation-play-state:paused;
- -o-animation-play-state:paused;
- }
- @-webkit-keyframes recordspin {
- from {
- -webkit-transform:rotate(0deg);
- -o-transform:rotate(0deg);
- transform:rotate(0deg);
- }
- to {
- -webkit-transform:rotate(360deg);
- -o-transform:rotate(360deg);
- transform:rotate(360deg);
- }
- }
- @keyframes recordspin {
- from {
- -ms-transform:rotate(0deg);
- -moz-transform:rotate(0deg);
- -webkit-transform:rotate(0deg);
- -o-transform:rotate(0deg);
- transform:rotate(0deg);
- }
- to {
- -ms-transform:rotate(360deg);
- -moz-transform:rotate(360deg);
- -webkit-transform:rotate(360deg);
- -o-transform:rotate(360deg);
- transform:rotate(360deg);
- }
- }
- .vinyl, .vinyl svg {
- width:var(--Vinyl-Icon-Size);
- height:var(--Vinyl-Icon-Size);
- }
- .music-controls {
- margin-left:10px;
- width:var(--Music-Controls-Size);
- overflow:hidden;
- cursor:pointer;
- }
- .music-controls svg {
- width:var(--Music-Controls-Size);
- height:var(--Music-Controls-Size);
- color:var(--Music-Controls);
- stroke-width:1.5px;
- }
- .pausee {display:none;}
- .beff {display:none;}
- .aff {display:block;}
- .music-title {
- margin-left:8px;
- font-family:work sans;
- font-size:var(--Music-Title-Font-Size);
- color:var(--Music-Title-Color);
- }
- @font-face {
- font-family: chicle;
- src: url(https://dl.dropbox.com/s/publbos1lnbeaf7/BUBBLEGUMS.TTF);
- }
- #cont { /*container! i'd recommed u only change the border eheh */
- width: 240px;
- height: 240px;
- border-radius: 12px;
- position: relative;
- margin-left: auto;
- margin-right: auto;
- }
- .imgbg { /* image made to fit no matter the size! */
- width: 100%;
- height: 100%;
- object-fit: cover;
- border-radius: 9px; /*for an image to fit make it -3px than the border-radius of the #cont*/
- }
- #float { /* floating text, u can change this! */
- position: absolute;
- width: 100%;
- left: 0;
- top: -10px;
- text-align: center;
- z-index: 1;
- text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000, 0 0;
- font-family: chicle;
- font-size:2em;
- font-weight:bold;
- color: #fff;
- animation-name: floating;
- animation-duration: 3s;
- animation-iteration-count: infinite;
- animation-timing-function: ease-in-out;
- }
- mark { /* round stuff like highlight */
- background: #d4e3c8;
- border-radius:7px;
- border: 1px solid #000;
- padding-left: 5px;
- padding-right: 5px;
- color: ##41572e;
- }
- @keyframes floating {
- 0% { transform: translate(0, 0px); }
- 50% { transform: translate(0, 15px); }
- 100% { transform: translate(0, -0px); }
- }
- #scroll {
- /* scrollbox! u can change this! note: mess around with the 'margin-left' depending on the width or if u change anything of the scrollbox bc it messes a bit */
- opacity: 0;
- position: absolute;
- margin-left: 4%;
- margin-right: 4%;
- width: 220px;
- top: 70px;
- border-radius: 10px;
- padding: 10px;
- height: 120px;
- overflow: scroll;
- background: #FFFFFF90;
- transition: opacity .35s ease;
- /* style of the text inside scrollbox */
- font-size: 14px;
- font-family: times;
- color: #000;
- text-align: justify;
- line-height: 16px;
- }
- #cont:hover #scroll {
- opacity: 1;
- }
- #overlay { /* overlay! (blue in this case) (hidden without mouseover) */
- position: absolute;
- bottom: 0;
- left: 0;
- right: 0;
- background: rgba(199, 234, 252, 0); /*copy the color of ur choice in rgb! the last digit stands for opacity*/
- overflow: hidden;
- width: 0;
- height: 100%;
- transition: background 0.5s ease;
- border-radius: 9px;
- }
- #cont:hover #overlay { /* overlay when hovered! (it appears) */
- width: 100%;
- background: rgba(199, 234, 252, .2); /*copy the color of ur choice in rgb! the last digit stands for opacity*/
- transition: background 0.5s ease-out;
- }
- </style>
- <div id="cont">
- <img class=imgbg src="https://i.imgur.com/D6yrVz0.jpeg">
- <div id="float"> dani </div>
- <div id="overlay"> </div>
- <div id="scroll"> <u>your text</u> goes here your text goes here your text goes here <i>your text goes here</i> <p>
- <mark>:)</mark> your text goes here your text goes here your text goes here your text goes here your text goes <p>
- <mark>:(</mark> here your text goes here your text goes here your text
- <p>
- <mark>byf</mark> goes here your text goes here your text goes here your text goes here
- <p>
- <mark>dfi</mark> goes here your text goes here your text goes here your text goes here your text goes here
- <p><img src="http://i748.photobucket.com/albums/xx122/luuuh/divisorias/barinhas29.gif" style:"width: 40%;">
- <p>
- <mark>stan</mark> goes here your text goes here your text goes here
- <p>
- <strong>support</strong> goes here your text goes here your text goes here
- </div>
- <br></br>
- <!-------MUSIC PLAYER BY GLENTHEMES------->
- <div class="glenjams-06">
- <div class="pasta">
- <div class="vinyl"></div>
- <div class="music-controls">
- <div class="playy"><i data-feather="play"></i></div>
- <div class="pausee"><i data-feather="pause"></i></div>
- </div>
- <div class="music-title"></div>
- </div>
- <audio id="audio" src="https://dl.dropbox.com/s/myqskugtxm9byf4/Moonlit%20Night.mp3" type="audio"></audio>
- </div><!--pasta-->
- </div><!--glenjams-06-->
- <!----end music player---->
- <script>feather.replace()</script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement