Notification texts go here Contact Us Buy Now!

Blogger / Web Sitesi İçin Basit Dijital Saat Eklentisi

Blogger / Web Sitesi İçin Basit Dijital Saat Eklentisi
Blog Yazarı
Blogger / Web Sitesi İçin Basit Dijital Saat  bu eğiticide blogger blogunda basit bir dijital saati nasıl paylaşacağımı paylaşacağım. Blogger’ın basit bir parçası bu.

Bu bölüm blogunuz için önemli değil. Bu bir blogun güzelliğidir. Bu numarayı wordpress gibi her web sitesinde kullanıyorsunuz.

İlk başta hangi widget'ı gördünüz? Doğru, Bu bizim bu yazının öğreticimiz. Şimdi ana bölüme gel. Çalışmaya başlamadan önce lütfen şablonunuzun bir yedekleme dosyasını saklayın, ardından çalışmaya başlayın.

Öncelikle Şablon> HTML Düzenle üzerine tıklayın ve   sonra " Ctrl + F " tuşlarına basın ve ]]></b:skin> veya </style> kodunu bulualım ve bulduğumuz kodun üzerine gelecek şekilde aşağıda ki CSS kodlarını ekleyelim.

#realtime {
    font-family: Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;
    font-weight: 700;
    display: block;
    text-align: center;
    font-size: 30px;
    padding: 4rem 0;
}

#realtime span {
    display: inline-block;
    font-family: Avenir Next, Nunito, sans-serif;
    font-weight: 100;
    font-size: 8vw;
    position: relative;
    top: -2vw;
}

@media all and (max-width: 600px) {
    #realtime {
        font-size: 4rem;
        padding: 2rem 0;
    };
}

@media all and (max-width: 350px) {
 
    #realtime {
        font-size: 3rem;
        padding: 2rem 0;
    };
}

Şimdi Şablonu Kaydet ve Düzen'i tıklayın  , ardından yeni HTML / Javascript Widget'ı ekleyin  ve aşağıdaki kodu kopyalayın.

<time id="realtime"></time>
<script type='text/javascript'>
var currentTime = document.getElementById("realtime");
function zeropadder(n) {
  return (parseInt(n,10) < 10 ? '0' : '')+n;
}
function updateTime(){
  var timeNow= new Date(),
  hh = timeNow.getHours(),
  mm = timeNow.getMinutes(),
  ss = timeNow.getSeconds(),
  formatAMPM = (hh >= 12?'PM':'AM');
  hh = hh % 12 || 12;
  currentTime.innerHTML = hh + ":" + zeropadder(mm) + ":" + zeropadder(ss) + " " + formatAMPM;
  setTimeout(updateTime,1000);
}
updateTime();
</script>

Bütün işlemler bu kadar herkese kolay gelsin.

Yorum Gönder

Cookie Consent
We serve cookies on this site to analyze traffic, remember your preferences, and optimize your experience.
Oops!
It seems there is something wrong with your internet connection. Please connect to the internet and start browsing again.
AdBlock Detected!
We have detected that you are using adblocking plugin in your browser.
The revenue we earn by the advertisements is used to manage this website, we request you to whitelist our website in your adblocking plugin.
Site is Blocked
Sorry! This site is not available in your country.