Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ---CODES---
- <style>
- html {
- overflow: scroll;
- overflow-x: hidden;
- }
- ::-webkit-scrollbar {
- width: 0; /* remove scrollbar space */
- background: transparent; /* to make scrollbar invisible */
- }
- ::-webkit-scrollbar-thumb {
- background: transparent;
- }
- #text01 {
- animation-name: floating;
- animation-duration: 3s;
- animation-iteration-count: infinite;
- animation-timing-function: ease-in-out;
- }
- @keyframes floating {
- 0% { transform: translate(0, 0px); }
- 50% { transform: translate(0, 15px); }
- 100% { transform: translate(0, -0px); }
- }
- </style>
- ---MARQUEE---
- <style>
- #poop {
- font-size:1em;
- font-family: 'Grandstander';
- color: #000;
- font-weight: bold;
- line-height: 1em;
- </style>
- <div id="poop"> <marquee behavior="scroll" direction="left"> scroll~ credit zuhaves </marquee>
- </div>
Advertisement
Add Comment
Please, Sign In to add comment