Pre Vesi Berkas Kita

Show Code
<!--Komen html-->
<div class="other">
  <div class="wpnm-button style-3 toggle">
    <div class="wpnm-button-circle">
      <div class="wpnm-button-moon-spots"></div>
    </div>
    <div class="wpnm-button-cloud">
      <div></div>
      <div></div>
    </div>
    <div class="wpnm-button-stars">
      <div></div>
      <div></div>
    </div>
  </div>
</div>
/*Komen CSS*/
html, body {
  height: 100%;
}

body {
  background-color: #1a232b;
  overflow: hidden;
}

.banner {
  width: 300px;
  height: 250px;
  border: 1px solid #fff;
  overflow: hidden;
  margin: 50px auto;
}

.wrapper {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  position: relative;
}

.box {
  transform: translate(-50%, -50%);
  position: relative;
  background-color: #ef4657;
  width: 100px;
  height: 20px;
  border-radius: 5px;
  margin-top: 5px;
  display: block;
}

button {
  display: inline-block;
  outline: none;
  border: none;
  background-color: #ef4657;
  color: #fff;
  text-decoration: none;
  margin: 0 auto;
  border-radius: 4px;
  padding: 12px 25px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
}
button:hover {
  background-color: #fff;
  color: #ef4657;
  text-decoration: none;
}

body {
  background-color: #f9fbfd;
  overflow: auto;
}

header {
  background-color: #262626;
  height: 80px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

a {
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
  outline: none;
  color: #eb172c;
}

pre a {
  color: #ef4657;
}

footer {
  background-color: #262626;
  width: 100%;
  height: 50px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
footer a {
  color: slategray;
}
footer span {
  color: gray;
}

h1 {
  color: #fff;
  margin: auto;
  font-size: 1.8em;
  text-align: center;
}

.gsap-logo {
  padding-left: 15px;
}

.bannerlab-logo {
  width: 200px;
  height: 80px;
  padding-right: 15px;
}

.block-title {
  background-color: #2E3D48;
  color: #fff;
  font-size: 20px;
  border-radius: 4px;
  padding: 5px 10px;
  text-align: center;
}

@media (max-width: 1200px) {
  h1 {
    font-size: 1.5em;
  }
}
@media (max-width: 700px) {
  h1 {
    font-size: 1.2em;
  }
}
// create main timeline
var timeline;

// create a function returning first timeline
function firstTl() {
  var tl = new TimelineMax()
  .from(element, 1, {vars});
  return tl;
}
// create a function with master timeline
function masterTl() {
  timeline = new TimelineMax({repeat:-1})
  .add( firstTl() );
  return timeline;
}
// start after all elements finished loading
window.onload = function() {
	masterTl();
}
<b:switch var='data:blog.languageDirection'>
  <b:case value='rlt'/>
    <div expr:dir='data:blog.languageDirection'>
      Tulisan teks ini dari kanan ke kiri
    </div>
  <b:case value='ltr'/>
    <div expr:dir='data:blog.languageDirection'>
      Tulisan teks ini dari kiri ke kanan
    </div>
</b:switch>