Blogger Loading Efekti etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster
Blogger Loading Efekti etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster

12 Aralık 2015 Cumartesi

Blogger Loading Efekti



1- Öncelikle aşağıda ki kodu Temanız'da </head> kodunun hemen bir satır üstüne yapıştırınız.
<script src='https://arlina-design.googlecode.com/svn/progressbar.js'/>

2- Daha sonra aşağıdan dilediğiniz kodu seçip temanız'da  ]]></b:skin> kodunun hemen bir satır üstüne ekleyiniz.
.pace {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;

  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;

  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;

  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;

  z-index: 2000;
  position: fixed;
  margin: auto;
  top: 12px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 200px;
  height: 25px;
  border: 2px solid #29d;
  background-color: #fff;
}

.pace .pace-progress {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;

  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;

  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;

  -webkit-transition: width 1s ease-in-out 1s linear;
  -moz-transition: width 1s ease-in-out 1s linear;
  -ms-transition: width 1s ease-in-out 1s linear;
  -o-transition: width 1s ease-in-out 1s linear;
  transition: width 1s ease-in-out 1s linear;

  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);

  max-width: 190px;
  position: fixed;
  z-index: 2000;
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  height: 15px;
  font-size: 12px;
  background: #29d;
  color: #29d;
  line-height: 60px;
  font-weight: bold;
  font-family:  Helvetica, Arial, "Lucida Grande", sans-serif;
}

.pace .pace-progress:after {
  content: attr(data-progress-text);
  display: inline-block;
}

.pace.pace-inactive {
  display: none;
}


DEMO

8 Kasım 2015 Pazar

Blogger Loading Efekti



Loading / Yüklenme özelliğini kurmak için öncelikle Blogger'a ardından blogunuza, sonra Şablon'a ve oradan da HTML'yi düzenle kısmına giriş yapın.



</body> tagı üzerine aşağıdaki kodları yapıştırın...
<!-- Animated Page Loading Effect for Blogger Start --><style>#abt-page-loader { position: fixed!important; top: 0; right: 0; bottom: 0; left: 0; z-index: 9999; background:#000 url('https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgvvrEoptnqUw7v3iJU2krE0_sAsVc0Ka-G-aMy6oIHtDnJG63O9nv2qyjrL4szUibJeAnhmpQ3Nef1LD9-s8yVMmciQlRGAKAe9wvzprJyIPmy09Ksh6xBk8q3X7CghcO5LGe8NysevYo/s200/load6.gif') no-repeat 50% 30%; color: #FFF; display: none; font: 0/0 a; text-shadow: none; padding: 1em 1.2em;}</style><script type="text/javascript">//<![CDATA[$(document.body).append('<div id="abt-page-loader">
Loading...</div>
');$(window).on("beforeunload", function() { // ... Show the Animation `.fadeIn()` $('#abt-page-loader').fadeIn(1000).delay(6000).fadeOut(1000);});//]]></script><!-- Animated Page Loading Effect for Blogger End -->