ปุ่ม ขึ้นไปบนสุดเลื่อนตาม Scroll นอกจากจะทำให้บล็อกดูสวยงามแล้ว ยังช่วยให้ผู้ชมบล็อกที่กำลังชมบทความที่อยู่ด่านล่างสุดขึ้นมาข้างบนสุดได้อย่างรวดเร็ว
ตัวอย่าง
วิธีทำปุ่มนี้ทำอย่างไรมาดูกันครับ
1.ค้นหา code (Ctrl+f) </body> แล้ววาง code ข้างล่างก่อน code ดังกล่าว
<style type="text/css"> #MD-StoTop {-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius: 5px; width:120px;background-color: #EEEEEE;background-color: rgba(238, 238, 238, 0.6);filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#99EEEEEE',EndColorStr='#99EEEEEE');text-align:center;padding:5px;position:fixed;bottom:60px;right:60px;cursor:pointer;color:#444;text-decoration:none;border:1px solid #C9C9C9;} </style> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script> <script type='text/javascript'> $(function() { $.fn.scrollToTop = function() { $(this).hide().removeAttr("href"); if ($(window).scrollTop() != "0") { $(this).fadeIn("slow") } var scrollDiv = $(this); $(window).scroll(function() { if ($(window).scrollTop() == "0") { $(scrollDiv).fadeOut("slow") } else { $(scrollDiv).fadeIn("slow") } }); $(this).click(function() { $("html, body").animate({ scrollTop: 0 }, "slow") }) } }); $(function() { $("#MD-StoTop").scrollToTop(); }); </script> <a href='#' id='MD-StoTop' style='display:none;'>Scroll to Top</a>
2.เสร็จแล้ว บันทึกเทมเพลต แล้วคลิดดูบล็อกได้เลยครับ
ไม่มีความคิดเห็น:
แสดงความคิดเห็น