• Trang chủ

Huỳnh Trọng Đức IT

ddddddddd

  • Home
  • Thủ Thuật
  • Download

Widget đồng hồ số đơn giản cho Blogger/Website

Đăng nhận xét tháng 10 11, 2017
Trong bài này mình sẽ hướng dẫn các bạn tạo một widget đồng hồ số đơn giản với Blogger, còn các website khác thì cũng áp dụng đoạn code này được luôn nha :))

Bước 1: Copy đoạn code bên dưới và thêm vào ô chứa code của blog bạn:
<style>
#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;
    };
}
</style>
<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>
* Lưu ý: Ở phần mình tô màu (PM và AM) bạn có thể chỉnh nó tùy ý (vd: PM= tối ; AM=sáng) hoặc có thể xóa đi cũng được.
Share
thu thuat tt blogger widget

Không có nhận xét nào :

Giới thiệu về tôi

Ảnh của tôi
Huỳnh Trọng Đức
Đồng Nai, Nhơn Trạch, Vietnam
Xem hồ sơ hoàn chỉnh của tôi

Nhãn

thu thuat (21) Music (12) Technology (12) People (11) Web Design (9) Graphic Design (8) Motion Design (8) Fashion (7) Foods (7) Sports (7) Video (7) tt blogger (7) windows (7) Gallery (6) Nature (6) tt windows (6) windows 10 (6) Travel (5) tt phan mem (5) c cong cong (4) code (4) html css (4) widget (4) windows 7 (4) windows 8 (4) Cars (3) City (3) Entertainment (3) Phone (3) tips (3) Movies (2) Print Design (2) Server (2) Title (2) Update (2) cuoc song (2) facebook (2) tt internet (2) Short (1) Test (1) download (1) internet (1) picture (1) template blogger (1) tt van phong (1) word (1) youtube (1)

Huỳnh Trọng Đức IT

ddddddddd

Tổng số lượt xem trang

Trang

  • Trang chủ
Được tạo bởi Blogger
By HTD