♏------------------♏

Scroll To Top Button


Caren雨文 的教学
---------------------------------------------------------------------

就是这个红色框框内的小东西
其实这是 Scroll To Top 按钮 来的
意思就是你 click 一下这个东东
会自动返回上面(速度是由慢至快的)
这样你就不用麻烦动手倒回去
 

点击 “布局”
然后 “添加小工具”
选择 “HTML/JAVA SCRIPT"
(不知道的话可参考 < 这里 > )

现在你把下面的 code paste 进去

-------------------------------------- 下面开始 COPY--------------------------------------

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script> 
<script type="text/javascript"> 


var scrolltotop={
   setting: {startline:100, scrollto: 0, scrollduration:1000, fadeduration:[500, 100]},
    controlHTML: '<img src="图画 URL(网址)" style="filter:alpha(opacity=70); -moz-opacity:0.1; width:33px; height:47px" />', 
    controlattrs: {offsetx:40, offsety:70}, 
    anchorkeyword: '#top', 
    state: {isvisible:false, shouldvisible:false},
    scrollup:function(){
        if (!this.cssfixedsupport) 
            this.$control.css({opacity:0}) 
        var dest=isNaN(this.setting.scrollto)? this.setting.scrollto : parseInt(this.setting.scrollto)
        if (typeof dest=="string" && jQuery('#'+dest).length==1) 
            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.scrollLeft() + $window.width() - this.$control.width() - this.controlattrs.offsetx
        var controly=$window.scrollTop() + $window.height() - this.$control.height() - this.controlattrs.offsety
        this.$control.css({left: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:'Back to Top'})
                .click(function(){mainobj.scrollup(); return false})
                .appendTo('body')
            if (document.all && !window.XMLHttpRequest && mainobj.$control.text()!='') 
                mainobj.$control.css({width:mainobj.$control.width()}) 
            mainobj.togglecontrol()
            $('a[href="' + mainobj.anchorkeyword +'"]').click(function(){
                mainobj.scrollup()
                return false
            })
            $(window).bind('scroll resize', function(e){
                mainobj.togglecontrol()
            })


        })


    }


}
scrolltotop.init()


</script>


---------------------------------------- 不要COPY 超过这里---------------------------------------

现在我来解说

 紫色 highlight 可以更换成 你想要的图片网址
比如我的翅膀图片的网址是
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhsnnV_BVph14sChGxiprXFk6EK9r7xXMi1tNjlCu52_jiCSp8KW9DG4Kkk9bvjfEegQbwGd-4lv7980B10xhQ8or4V3Su63Ol0Q3LGTQhC4dDaiJsArc5HBNIz_jyhYByF8JpY41J9Xxo8/s1600/pink-ani01.gif

如何取得图片的网址/URL ??
只要对着你喜欢的图片按右键
然后选择 Copy image URL 或是 copy link address 
接来下你把紫色highlight 删掉 然后把网址 paste 进去 就OK了

蓝色 highlight  是图片的 宽度
绿色 highlight  是图片的 高度

完成就可以按  ”保存“ 了

点击广告 :)

没有评论:

发表评论