Page 1 of 1

Right to Left panel slider

Posted: Wed Aug 29, 2007 12:04 pm
by vchris
I found this script on dynamicdrive.com. It was originally from up to bottom slider (content is hidden until you click a button that slides down a div and you see the content). I modded it to slide from the side instead but it slides from the wrong side. Currently it slides from left to right but I need right to left.

JS:
http://vchris.net/about/animatedcollapse.js

I think it has to do with this line in the JS file this.divObj.style.width=distancepercent * this.contentwidth +"px"

HTML (example 2):
http://vchris.net/about/slider.htm

Thanks

Posted: Wed Aug 29, 2007 2:57 pm
by hawleyjr
Have you looked at script.aculo.us?

http://wiki.script.aculo.us/scriptaculous/show/Demos

Posted: Wed Aug 29, 2007 8:13 pm
by vchris
That's not exactly what I'm looking for. I want to show a div when the user clicks a button and when he reclicks the button it closes.

Posted: Sat Sep 01, 2007 9:11 pm
by vchris
feyd | Please use

Code: Select all

,

Code: Select all

and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read:  [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]


I got the script working. It's going the right way also. The only problem I have is that I want an image to be the link to slide the div. I want it to animate at the same time the div does. The simplest way would be to include it in the div but then we have to make part of the div always show (the part of the image).

something like this:
i  |--------
m|
a |
g |
e |--------

so basically the div will hide but I want the image to always be showing. Is there a way, if the image is part of the div, to not completely hide the div so the image always shows? If you're pretty good in JS and think you can figure it out, be my guest. I've tried a couple times adding a 50px somewhere but doesn't work.

JS:
[syntax="javascript"]var uniquepageid=window.location.href.replace("http://"+window.location.hostname, "").replace(/^\//, "") //get current page path and name, used to uniquely identify this page for persistence feature

function animatedcollapse(divId, animatetime, persistexpand, initstate){
	this.divId=divId
	this.divObj=document.getElementById(divId)
	this.divObj.style.overflow="hidden"
	this.timelength=animatetime
	this.initstate=(typeof initstate!="undefined" && initstate=="block")? "block" : "contract"
	this.isExpanded=animatedcollapse.getCookie(uniquepageid+"-"+divId) //"yes" or "no", based on cookie value
	this.contentwidth=parseInt(this.divObj.style.width)
	var thisobj=this
	if (isNaN(this.contentwidth)){ //if no CSS "height" attribute explicitly defined, get DIV's height on window.load
		animatedcollapse.dotask(window, function(){thisobj._getwidth(persistexpand)}, "load")
		if (!persistexpand && this.initstate=="contract" || persistexpand && this.isExpanded!="yes") //Hide DIV (unless div should be expanded by default, OR persistence is enabled and this DIV should be expanded)
			this.divObj.style.visibility="hidden" //hide content (versus collapse) until we can get its height
	}
	else if (!persistexpand && this.initstate=="contract" || persistexpand && this.isExpanded!="yes") //Hide DIV (unless div should be expanded by default, OR persistence is enabled and this DIV should be expanded)
		this.divObj.style.width=0 //just collapse content if CSS "height" attribute available
	if (persistexpand)
		animatedcollapse.dotask(window, function(){animatedcollapse.setCookie(uniquepageid+"-"+thisobj.divId, thisobj.isExpanded)}, "unload")
}

animatedcollapse.prototype._getwidth=function(persistexpand){
	this.contentwidth=this.divObj.offsetWidth
	if (!persistexpand && this.initstate=="contract" || persistexpand && this.isExpanded!="yes"){ //Hide DIV (unless div should be expanded by default, OR persistence is enabled and this DIV should be expanded)
		this.divObj.style.width=0 //collapse content
		this.divObj.style.visibility="visible"
	}
	else //else if persistence is enabled AND this content should be expanded, define its CSS height value so slideup() has something to work with
		this.divObj.style.width=this.contentwidth+"px"
}


animatedcollapse.prototype._slideengine=function(direction){
	var elapsed=new Date().getTime()-this.startTime //get time animation has run
	var thisobj=this
	if (elapsed<this.timelength){ //if time run is less than specified length
		var distancepercent=(direction=="down")? animatedcollapse.curveincrement(elapsed/this.timelength) : 1-animatedcollapse.curveincrement(elapsed/this.timelength)
	this.divObj.style.width=distancepercent * this.contentwidth +"px"
	this.runtimer=setTimeout(function(){thisobj._slideengine(direction)}, 10)
	}
	else{ //if animation finished
		this.divObj.style.width=(direction=="down")? this.contentwidth+"px" : 0
		this.isExpanded=(direction=="down")? "yes" : "no" //remember whether content is expanded or not
		this.runtimer=null
	}
}


animatedcollapse.prototype.slidedown=function(){
	if (typeof this.runtimer=="undefined" || this.runtimer==null){ //if animation isn't already running or has stopped running
		if (isNaN(this.contentwidth)) //if content height not available yet (until window.onload)
			alert("Please wait until document has fully loaded then click again")
		else if (parseInt(this.divObj.style.width)==0){ //if content is collapsed
			this.startTime=new Date().getTime() //Set animation start time
			this._slideengine("down")
		}
	}
}

animatedcollapse.prototype.slideup=function(){
	if (typeof this.runtimer=="undefined" || this.runtimer==null){ //if animation isn't already running or has stopped running
		if (isNaN(this.contentwidth)) //if content height not available yet (until window.onload)
			alert("Please wait until document has fully loaded then click again")
		else if (parseInt(this.divObj.style.width)==this.contentwidth){ //if content is expanded
			this.startTime=new Date().getTime()
			this._slideengine("up")
		}
	}
}

animatedcollapse.prototype.slideit=function(){
	if (isNaN(this.contentwidth)) //if content height not available yet (until window.onload)
		alert("Please wait until document has fully loaded then click again")
	else if (parseInt(this.divObj.style.width)==0)
		this.slidedown()
	else if (parseInt(this.divObj.style.width)==this.contentwidth)
		this.slideup()
}

feyd | Please use[/syntax]

Code: Select all

,

Code: Select all

and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read:  [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]

Posted: Sat Sep 01, 2007 9:33 pm
by s.dot
Could you lay a div on top of that div? relative positioning

Posted: Sat Sep 01, 2007 9:48 pm
by vchris
I guess I could... You mean I would have 2 divs, one with the image I click the other with the content and both would slide at the same time and would look like 1 div? That's crazy but might just work.

Posted: Sat Sep 01, 2007 10:07 pm
by vchris
Done and done :D

Thank you very much!