Namkea Namkea Author
Title: ងាយ​ស្រួល​ក្នុង​ការ​​ដាក់ Scroll Back To Top (រមូ​​ឡើង​លើ) នៅ​ក្នុង​ប្លក​ករ
Author: Namkea
Rating 5 of 5 Des:
   ដើម្បី​ឱ្យ​អ្នក​ទស្ស​នា​មាន​ភាព​ងាយ​ស្រួល​នៅ​ពេល​មើល​ប្លក​របស់​យើង​នោះ​ យើង​គប្បី​ត្រូវ​ដាក់​   Scroll Back To Top   ដែល​គេ​ហៅ​ថា កា...

   ដើម្បី​ឱ្យ​អ្នក​ទស្ស​នា​មាន​ភាព​ងាយ​ស្រួល​នៅ​ពេល​មើល​ប្លក​របស់​យើង​នោះ​ យើង​គប្បី​ត្រូវ​ដាក់​ Scroll Back To Top ដែល​គេ​ហៅ​ថា ការ​រមូ​ឡើង​លើ។ នៅ​ពេល​ដែល​គេ​មើល​អត្ថ​បទ​របស់​យើង​ដល់​ខាង​ក្រោម​ ហើយ​ចង់​មក​ខាង​លើ​វិញ​យ៉ាង​រហ័ស​នោះ គេ​គ្រាន់​តែ ចុច​ Scroll Back To Top នោះ​ទៅ​គឺ​វា​នឹង​រមូ​ឡើង​លើ​ដោយ​ខ្លួន​​ឯង​
ដែល​មិន​ធ្វើ​ឱ្យ​ចំណាយ​ពេល​យូរ។ ដោយ​សារ​តែ​ហេតុ​ផល​ទាំង​អស់​នេះ​ហើយ​ទើប​ប្លក​​របស់​ខ្ញុំ​​សូម​ណែ​នាំ​ពី ​គន្លឹះ​តូច​មួយ​ងាយ​ស្រួល​ដាក់​ដោយ​ប្រើ​កូដ​តែ​បន្តិច​បន្តួច។ ចំពោះ​រូប​តំណាង​រមូ​ឡើង​លើ​ដែល​ខ្ញុំ​បង្ហាញ​នេះ គឺ​មាន​រូប​ជា​កាំជ្រួច​ ដែល​ពេល​យើង​រុច​លើ​វា​ទៅ វា​នឹង​រលា​ដល់​ទៅ​ដល់​លើ​​យ៉ាង​ឆាប់​រហ័ស។ សូម​អាន​ពី​របៀ​រនៃ​ការ​ដាក់​ដូច​ត​ទៅ ដើម្បី​ដាក់​ឲ្យ​បាន​ត្រឹម​ត្រូវ​តាម​ក្បួន​ខ្នាត ព្រោះ​មាន​អ្នក​ដាក់​ខុស​ច្រើន​ណាស់ ៖

៙ ​របៀប​ដាក់ Scroll Back To Top (រមូ​ឡើង​លើ)  ៖ 

- កត់ត្រា​ចូល (Log In) គណនី Blogger របស់​លោក​អ្នក។
- ចូល​ទៅ Layout >> Addd a Gadget (សូម​មើល​រូប​ខាង​ក្រោម)

 - រមូល (Scroll) ​ចុះ​ក្រោមរក​មើល Gadget ឈ្មោះ​ថា HTML/JavaScript (សូម​មើល​រូប​)
- ពេល​ចម្លង​ដាក់​រួច​រាល់​ហើយ​ សូម​ចុច​ឆ្នុច​​ពាក្យ​ថា " Save "។
កូដ​ Scroll Back To Top សម្រាប់​ប្លកករ
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" >
/***********************************************
* Scroll To Top Control script- © Your Widget World DHTML code library (www.yourwidgetworld.com)* This notice MUST stay intact for legal use
* Visit Project Page at http://www.yourwidgetworld.com for full source code
***********************************************/
var scrolltotop={
    //startline: Integer. Number of pixels from top of doc scrollbar is scrolled before showing control
    //scrollto: Keyword (Integer, or "Scroll_to_Element_ID"). How far to scroll document up when control is clicked on (0=top).
    setting: {startline:100, scrollto: 0, scrollduration:1000, fadeduration:[500, 100]},
    controlHTML: '<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjAOAy5TL8cL-LYYuEPcSsnBL6CA6CuRCHLXc91rRFDk5y5y0J9DHoyGpGlkEojEv9jhOIMzkSLgHi9443SyUMFfchVOdjkRVoMRnDz3XzNpOA7gkTzmdutho2AkejI2udWSQFB-NNF9EM/s1600/Back_to_top.png" />', //HTML for control, which is auto wrapped in DIV w/ ID="topcontrol"
    controlattrs: {offsetx:5, offsety:5}, //offset of control relative to right/ bottom of window corner
    anchorkeyword: '#top', //Enter href value of HTML anchors on the page that should also act as "Scroll Up" links
    state: {isvisible:false, shouldvisible:false},
    scrollup:function(){
        if (!this.cssfixedsupport) //if control is positioned using JavaScript
            this.$control.css({opacity:0}) //hide control immediately after clicking it
        var dest=isNaN(this.setting.scrollto)? this.setting.scrollto : parseInt(this.setting.scrollto)
        if (typeof dest=="string" && jQuery('#'+dest).length==1) //check element set by string exists
            dest=jQuery('#'+dest).offset().top
        else
            dest=0
        this.$body.animate({scrollTop: dest}, this.setting.scrollduration);
    },
    keepfixed:function(){
        var $window=jQuery(window)
        var controlx=$window.scrollright() + $window.width() - this.$control.width() - this.controlattrs.offsetx
        var controly=$window.scrollTop() + $window.height() - this.$control.height() - this.controlattrs.offsety
        this.$control.css({right:controlx+'px', top:controly+'px'})
    },
    togglecontrol:function(){
        var scrolltop=jQuery(window).scrollTop()
        if (!this.cssfixedsupport)
            this.keepfixed()
        this.state.shouldvisible=(scrolltop>=this.setting.startline)? true : false
        if (this.state.shouldvisible && !this.state.isvisible){
            this.$control.stop().animate({opacity:1}, this.setting.fadeduration[0])
            this.state.isvisible=true
        }
        else if (this.state.shouldvisible==false && this.state.isvisible){
            this.$control.stop().animate({opacity:0}, this.setting.fadeduration[1])
            this.state.isvisible=false
        }
    },

    init:function(){
        jQuery(document).ready(function($){
            var mainobj=scrolltotop
            var iebrws=document.all
            mainobj.cssfixedsupport=!iebrws || iebrws && document.compatMode=="CSS1Compat" && window.XMLHttpRequest //not IE or IE7+ browsers in standards mode
            mainobj.$body=(window.opera)? (document.compatMode=="CSS1Compat"? $('html') : $('body')) : $('html,body')
            mainobj.$control=$('<div id="topcontrol">'+mainobj.controlHTML+'</div>')
                .css({position:mainobj.cssfixedsupport? 'fixed' : 'absolute', bottom:mainobj.controlattrs.offsety, right:mainobj.controlattrs.offsetx, opacity:0, cursor:'pointer'})
                .attr({title:'Scroll Back to Top'})
                .click(function(){mainobj.scrollup(); return false})
                .appendTo('body')
            if (document.all && !window.XMLHttpRequest && mainobj.$control.text()!='') //loose check for IE6 and below, plus whether control contains any text
                mainobj.$control.css({width:mainobj.$control.width()}) //IE6- seems to require an explicit width on a DIV containing text
            mainobj.togglecontrol()
            $('a[href="' + mainobj.anchorkeyword +'"]').click(function(){
                mainobj.scrollup()
                return false
            })
            $(window).bind('scroll resize', function(e){
                mainobj.togglecontrol()
            })
        })
    }
}
scrolltotop.init()
</script>

- ចំណាំ ៖ លោក​អ្នក​អាច​ប្តូរ​ Link រូប​​ភាព Scroll Back To Top ទៅ​ជា​ Link រូប​ភាព​ណា​មួយ​ដែល​លោក​អ្នក​ពេញ​ចិត្ត ដោយ​គ្រាន់​តែ​ផ្លាស់​ប្តូរ​ដំ​ណភ្ជាប់ (Link) ខាង​ក្រោម​ទៅ​ជា​ដំណ​រូប​ភាព​​របស់​លោក​​អ្នក 
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjAOAy5TL8cL-LYYuEPcSsnBL6CA6CuRCHLXc91rRFDk5y5y0J9DHoyGpGlkEojEv9jhOIMzkSLgHi9443SyUMFfchVOdjkRVoMRnDz3XzNpOA7gkTzmdutho2AkejI2udWSQFB-NNF9EM/s1600/Back_to_top.png

ប្រភពមកពី៖ IOS

Advertisement

 
Top