நாம் நமது வலைப்பூவில் ஒவ்வொன்றாக படித்து கடைசி பகுதிக்கு வந்துவிடுவோம். திரும்ப மேலே போகவேண்டுமெனில் ctrl+home பட்டன் யூஸ் பண்ணலாம். அல்லது மௌஸ் மூலம் கர்சரை இழுத்து மேலே செல்லலாம். அல்லது back to top என்ற புதிய widget வைக்கலாம். ஆனால் நாம் இங்கே பார்க்க போவது back to top என்ற புதிய widget தான். ஆனால் நம் பார்வைக்கு கவர்ச்சியாக இருக்கும்படி மெதுவாக மேலே செல்லும். அதாவது back to top பட்டன் அழுத்தியவுடன் உடனே மேல் பக்கத்துக்கு வந்து நிற்காமல் மெதுவாக மேலே செல்லும். இந்த வசதியை நம் பிளாக்கிற்கு எப்படி வைப்பது என பார்க்கலாம்.
1. DASHBOARD > DESIGN > PAGE ELEMENTS
2. ADD A GADGET > CHOOSE HTML/JAVA SCRIPT WIDGET
3. கீழே உள்ள HTML CODEகளை அந்த பாக்ஸில் பேஸ்ட் செய்யவும்.
<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- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* Modified by www.MyBloggerTricks.com
* This notice MUST stay intact for legal use
* Visit Project Page at http://www.dynamicdrive.com for full source code
***********************************************/
* Scroll To Top Control script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* Modified by www.MyBloggerTricks.com
* This notice MUST stay intact for legal use
* Visit Project Page at http://www.dynamicdrive.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="IMAGE LINK" />', //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
//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="IMAGE LINK" />', //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);
},
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.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'})
},
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:'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()
})
})
}
}
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>
மேலே IMAGE LINK என்ற இடத்தில கீழே உள்ள படங்களில் ஒன்றின் URLஐ பேஸ்ட் செய்யவும். அவ்வளவு தான் உங்கள் பிளாக்கிற்கு அழகிய BACK TO TOP பட்டன் வந்துவிடும். இனி உங்கள் பிளாக்கின் மேலே செல்ல இந்த பட்டனை கிளிக் செய்தாலே போதும்.
மேற்கண்ட படங்களில் உங்களுக்கு பிடித்த படத்தை RIGHT CLIK செய்தால் COPY IMAGE URL/ COPY IMAGE LOCATION என இருக்கும். அதை செலக்ட் செய்து IMAGE LINK க்கு பதிலாக பேஸ்ட் செய்யவும்.
18 கருத்துரைகள்:
ஒரு உபயோகமான தகவல்..
பகிர்வுக்கு நன்றி..
பயனுள்ள விஷயத்தைப் பகிர்ந்ததற்கு நன்றி.
பயனுள்ள தகவலுக்கு நன்றி நண்பரே
உபயோகாமான தகவல் நண்பரே
இன்று நமது தளத்தில்
நாம் அன்றாடம் உபயோகிக்கும் உணவுகளின் சக்திகளின் அளவுகள் அறிந்துகொள்ளுங்கள்
அடேங்கப்பா!இம்புட்டுக் காரியம் பண்ணணுமா?வேணாம் சாமி!உபயோகமான தகவல் பிரகாஷ், நன்றி!
தலை சுத்துதுப்பா....
தகவலுக்கு நன்றி..
வணக்கம் நண்பா,
நலமா?
ப்ளாக்கினை கீழிருந்து மேல் நோக்கிப் படிப்பதற்கு ஏற்ற அருமையான தகவல்! நன்றி பாஸ்.
தகவலுக்கு நன்றி
உபயோகமான தகவல் நன்றி
அருமையான தகவல்
அருமையான தகவலுக்கு நன்றி நண்பரே!
"இரண்டாம் பகுதி - அறிந்ததா? தெரிந்ததா? புரிந்ததா?"
உபயோகமான தகவல்,நன்றி பகிர்வுக்கு.
நல்ல தகவல் நானும் ஒரு ஆங்கில தளத்தைப் படிச்சுதான் வைத்தேன் அதுல கூட இவ்வளவு தெளிவு இல்லை நன்றிகள்...தமிழ்வாசி
அன்பரே, இதை Dynamic Views உள்ள பக்கத்தில் வர வைப்பது எப்படி??
அருமையான தகவலுக்கு நன்றி நண்பரே!
முல்லைப் பெரியாறு அணை விழிப்புணர்வு பிரச்சாரத்தை மதுரையில் தொடங்கினார் வைகோ (படங்ககள் இணைப்பு "
அருமையான தகவல்... நானும் வச்சிட்டேன்... நன்றி நண்பா...
புதிதாக வெப்சைட் தொடங்க வேண்டுமா...?
http://zhosting.in சென்று உங்களின் புதிய வெப்சைட்டை நிறுவுங்கள். உங்களுக்கு தமிழிலேயே உதவிகள் வழங்கப்படும்.