friendsterTalk - Friendster Forum

friendsterTalk - Friendster Forum

Welcome guest! Please Login or Register.

#1  2008-07-17 16:40:40

EbengMaya
 ebeng_emoholic
EbengMaya's display avatar
» FriendsterAgent
gelo ciah maneh hahaha
Location: garut aing mah
Registered: 2008-02-09
Posts: 2410
Last visit: 2009-01-06
Reputation: 100
Friendster

[Tutorial]Compilation Image Slide In Foto Galery

just wanna share :rose:

Credit:
1.Dynamic Drive
2.Ebeng
Inspiration:
simpleMe
thanks for him :rose:


1.Presentational Slideshow Script

first:
create new text file :thumbsdown:

<html>
<head>
<title>Image Slideshow</title>
<body>

<script language="JavaScript1.2">

//Presentational Slideshow Script- By Dynamic Drive
//For full source code and more DHTML scripts, visit http://www.dynamicdrive.com
//This credit MUST stay intact for legal use

var slideshow_width='320px' //SET SLIDESHOW WIDTH (set to largest image's width if multiple dimensions exist)
var slideshow_height='280px' //SET SLIDESHOW HEIGHT (set to largest image's height if multiple dimensions exist)
var pause=3000 //SET PAUSE BETWEEN SLIDE (2000=2 seconds)
var slidebgcolor="white"

var dropimages=new Array()
//SET IMAGE PATHS. Extend or contract array as needed
dropimages[0]="[b[URL FOTO[/b]"
dropimages[1]="[b[URL FOTO[/b]"
dropimages[2]="[b[URL FOTO[/b]"

var droplinks=new Array()
//SET IMAGE URLs. Use "" if you wish particular image to NOT be linked:
droplinks[0]="[b[YOUR link[/b]"
droplinks[1]="[b[Your LINK[/b]"
droplinks[2]="[b[Your Link[/b]"


////NO need to edit beyond here/////////////

var preloadedimages=new Array()
for (p=0;p<dropimages.length;p++){
preloadedimages[p]=new Image()
preloadedimages[p].src=dropimages[p]
}

var ie4=document.all
var dom=document.getElementById

if (ie4||dom)
document.write('<div style="position:relative;width:'+slideshow_width+';height:'+slideshow_height+';overflow:hidden"><div id="canvas0" style="position:absolute;width:'+slideshow_width+';height:'+slideshow_height+';background-color:'+slidebgcolor+';left:-'+slideshow_width+'"></div><div id="canvas1" style="position:absolute;width:'+slideshow_width+';height:'+slideshow_height+';background-color:'+slidebgcolor+';left:-'+slideshow_width+'"></div></div>')
else
document.write('<a href="javascript:rotatelink()"><img name="defaultslide" src="'+dropimages[0]+'" border=0></a>')

var curpos=parseInt(slideshow_width)*(-1)
var degree=10
var curcanvas="canvas0"
var curimageindex=linkindex=0
var nextimageindex=1


function movepic(){
if (curpos<0){
curpos=Math.min(curpos+degree,0)
tempobj.style.left=curpos+"px"
}
else{

clearInterval(dropslide)
nextcanvas=(curcanvas=="canvas0")? "canvas0" : "canvas1"
tempobj=ie4? eval("document.all."+nextcanvas) : document.getElementById(nextcanvas)
var slideimage='<img src="'+dropimages[curimageindex]+'" border=0>'
tempobj.innerHTML=(droplinks[curimageindex]!="")? '<a href="'+droplinks[curimageindex]+'">'+slideimage+'</a>' : slideimage
nextimageindex=(nextimageindex<dropimages.length-1)? nextimageindex+1 : 0
setTimeout("rotateimage()",pause)
}
}

function rotateimage(){
if (ie4||dom){
resetit(curcanvas)
var crossobj=tempobj=ie4? eval("document.all."+curcanvas) : document.getElementById(curcanvas)
crossobj.style.zIndex++
var temp='setInterval("movepic()",50)'
dropslide=eval(temp)
curcanvas=(curcanvas=="canvas0")? "canvas1" : "canvas0"
}
else
document.images.defaultslide.src=dropimages[curimageindex]
linkindex=curimageindex
curimageindex=(curimageindex<dropimages.length-1)? curimageindex+1 : 0
}

function rotatelink(){
if (droplinks[linkindex]!="")
window.location=droplinks[linkindex]
}

function resetit(what){
curpos=parseInt(slideshow_width)*(-1)
var crossobj=ie4? eval("document.all."+what) : document.getElementById(what)
crossobj.style.left=curpos+"px"
}

function startit(){
var crossobj=ie4? eval("document.all."+curcanvas) : document.getElementById(curcanvas)
crossobj.innerHTML='<a href="'+droplinks[curimageindex]+'"><img src="'+dropimages[curimageindex]+'" border=0></a>'
rotateimage()
}

if (ie4||dom)
window.onload=startit
else
setInterval("rotateimage()",pause)

</script>
</body>
</html>

edit the bold one

second :
input this code for your js

/***slide foto***/
var tax = "<iframe style='FILTER: chroma(color=#666666)' allowtransparency='true' frameborder=0 width='300' height='300' scrolling='no' src=URL HTML></iframe>";
addBox("LEFT","PHOTO GALLERY",tax,"div_967","6");

change with your url html :thumbsup:

preview:http://h1.ripway.com/agam12/ebeng.html

2.Translucent slideshow Script

first:
create new text file :thumbsdown:

<html>
<body>
<script type="text/javascript">

/***********************************************
* Translucent Slideshow script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/

var trans_width='320px' //slideshow width
var trans_height='250px' //slideshow height
var pause=3000 //SET PAUSE BETWEEN SLIDE (3000=3 seconds)
var degree=10 //animation speed. Greater is faster.

var slideshowcontent=new Array()
//Define slideshow contents: [image URL, OPTIONAL LINK, OPTIONAL LINK TARGET]
slideshowcontent[0]=["URL FOTO"]
slideshowcontent[1]=["URL FOTO"]
slideshowcontent[2]=["URL FOTO"]


////NO need to edit beyond here/////////////

var bgcolor='white'

var imageholder=new Array()
for (i=0;i<slideshowcontent.length;i++){
imageholder[i]=new Image()
imageholder[i].src=slideshowcontent[i][0]
}

var ie4=document.all
var dom=document.getElementById&&navigator.userAgent.indexOf("Opera")==-1

if (ie4||dom)
document.write('<div style="position:relative;width:'+trans_width+';height:'+trans_height+';overflow:hidden"><div id="canvas0" style="position:absolute;background-color:'+bgcolor+';width:'+trans_width+';height:'+trans_height+';left:-'+trans_width+';filter:alpha(opacity=20);-moz-opacity:0.2;"></div><div id="canvas1" style="position:absolute;background-color:'+bgcolor+';width:'+trans_width+';height:'+trans_height+';left:-'+trans_width+';filter:alpha(opacity=20);-moz-opacity:0.2;"></div></div>')
else if (document.layers){
document.write('<ilayer id=tickernsmain visibility=hide width='+trans_width+' height='+trans_height+' bgColor='+bgcolor+'><layer id=tickernssub width='+trans_width+' height='+trans_height+' left=0 top=0>'+'<img src="'+slideshowcontent[0][0]+'"></layer></ilayer>')
}

var curpos=trans_width*(-1)
var curcanvas="canvas0"
var curindex=0
var nextindex=1

function getslidehtml(theslide){
var slidehtml=""
if (theslide[1]!="")
slidehtml='<a href="'+theslide[1]+'" target="'+theslide[2]+'">'
slidehtml+='<img src="'+theslide[0]+'" border="0">'
if (theslide[1]!="")
slidehtml+='</a>'
return slidehtml
}

function moveslide(){
if (curpos<0){
curpos=Math.min(curpos+degree,0)
tempobj.style.left=curpos+"px"
}
else{
clearInterval(dropslide)
if (crossobj.filters)
crossobj.filters.alpha.opacity=100
else if (crossobj.style.MozOpacity)
crossobj.style.MozOpacity=1
nextcanvas=(curcanvas=="canvas0")? "canvas0" : "canvas1"
tempobj=ie4? eval("document.all."+nextcanvas) : document.getElementById(nextcanvas)
tempobj.innerHTML=getslidehtml(slideshowcontent[curindex])
nextindex=(nextindex<slideshowcontent.length-1)? nextindex+1 : 0
setTimeout("rotateslide()",pause)
}
}

function rotateslide(){
if (ie4||dom){
resetit(curcanvas)
crossobj=tempobj=ie4? eval("document.all."+curcanvas) : document.getElementById(curcanvas)
crossobj.style.zIndex++
if (crossobj.filters)
document.all.canvas0.filters.alpha.opacity=document.all.canvas1.filters.alpha.opacity=20
else if (crossobj.style.MozOpacity)
document.getElementById("canvas0").style.MozOpacity=document.getElementById("canvas1").style.MozOpacity=0.2
var temp='setInterval("moveslide()",50)'
dropslide=eval(temp)
curcanvas=(curcanvas=="canvas0")? "canvas1" : "canvas0"
}
else if (document.layers){
crossobj.document.write(getslidehtml(slideshowcontent[curindex]))
crossobj.document.close()
}
curindex=(curindex<slideshowcontent.length-1)? curindex+1 : 0
}

function jumptoslide(which){
curindex=which
rotateslide()
}

function resetit(what){
curpos=parseInt(trans_width)*(-1)
var crossobj=ie4? eval("document.all."+what) : document.getElementById(what)
crossobj.style.left=curpos+"px"
}

function startit(){
crossobj=ie4? eval("document.all."+curcanvas) : dom? document.getElementById(curcanvas) : document.tickernsmain.document.tickernssub
if (ie4||dom){
crossobj.innerHTML=getslidehtml(slideshowcontent[curindex])
rotateslide()
}
else{
document.tickernsmain.visibility='show'
curindex++
setInterval("rotateslide()",pause)
}
}

if (window.addEventListener)
window.addEventListener("load", startit, false)
else if (window.attachEvent)
window.attachEvent("onload", startit)
else if (ie4||dom||document.layers)
window.onload=startit

</script>
</body>
</html>

edit the bold one

second:
input this code for your js

/***slide foto***/
var tax = "<iframe style='FILTER: chroma(color=#666666)' allowtransparency='true' frameborder=0 width='300' height='300' scrolling='no' src=URL HTML></iframe>";
addBox("LEFT","PHOTO GALLERY",tax,"div_967","6");

change with your url html :thumbsup:

preview:http://h1.ripway.com/agam12/ebeng1.html

3.Up-down Image Slideshow Script

first:
create new text file :thumbsdown:

<html>
<body>

<script language="JavaScript1.2">

/*
Up down slideshow Script
By Dynamic Drive (www.dynamicdrive.com)
For full source code, terms of use, and 100's more scripts, visit http://www.dynamicdrive.com
*/

///////configure the below four variables to change the style of the slider///////
//set the scrollerwidth and scrollerheight to the width/height of the LARGEST image in your slideshow!
var scrollerwidth='320px'
var scrollerheight='280px'
//3000 miliseconds=3 seconds
var pausebetweenimages=3000

//configure the below variable to change the images used in the slideshow. If you wish the images to be clickable, simply wrap the images with the appropriate <a> tag
var slideimages=new Array()
slideimages[0]='<img src="URL FOTO">'
slideimages[1]='<img src="URL FOTO">'
slideimages[2]='<img src="URL FOTO">'
slideimages[3]='<img src="URL FOTO">'
slideimages[4]='<img src="URL FOTO">'
//extend this list

///////Do not edit pass this line///////////////////////

var ie=document.all
var dom=document.getElementById

if (slideimages.length>2)
i=2
else
i=0

function move1(whichlayer){
tlayer=eval(whichlayer)
if (tlayer.top>0&&tlayer.top<=5){
tlayer.top=0
setTimeout("move1(tlayer)",pausebetweenimages)
setTimeout("move2(document.main.document.second)",pausebetweenimages)
return
}
if (tlayer.top>=tlayer.document.height*-1){
tlayer.top-=5
setTimeout("move1(tlayer)",50)
}
else{
tlayer.top=parseInt(scrollerheight)
tlayer.document.write(slideimages[i])
tlayer.document.close()
if (i==slideimages.length-1)
i=0
else
i++
}
}

function move2(whichlayer){
tlayer2=eval(whichlayer)
if (tlayer2.top>0&&tlayer2.top<=5){
tlayer2.top=0
setTimeout("move2(tlayer2)",pausebetweenimages)
setTimeout("move1(document.main.document.first)",pausebetweenimages)
return
}
if (tlayer2.top>=tlayer2.document.height*-1){
tlayer2.top-=5
setTimeout("move2(tlayer2)",50)
}
else{
tlayer2.top=parseInt(scrollerheight)
tlayer2.document.write(slideimages[i])
tlayer2.document.close()
if (i==slideimages.length-1)
i=0
else
i++
}
}

function move3(whichdiv){
tdiv=eval(whichdiv)
if (parseInt(tdiv.style.top)>0&&parseInt(tdiv.style.top)<=5){
tdiv.style.top=0+"px"
setTimeout("move3(tdiv)",pausebetweenimages)
setTimeout("move4(second2_obj)",pausebetweenimages)
return
}
if (parseInt(tdiv.style.top)>=tdiv.offsetHeight*-1){
tdiv.style.top=parseInt(tdiv.style.top)-5+"px"
setTimeout("move3(tdiv)",50)
}
else{
tdiv.style.top=scrollerheight
tdiv.innerHTML=slideimages[i]
if (i==slideimages.length-1)
i=0
else
i++
}
}

function move4(whichdiv){
tdiv2=eval(whichdiv)
if (parseInt(tdiv2.style.top)>0&&parseInt(tdiv2.style.top)<=5){
tdiv2.style.top=0+"px"
setTimeout("move4(tdiv2)",pausebetweenimages)
setTimeout("move3(first2_obj)",pausebetweenimages)
return
}
if (parseInt(tdiv2.style.top)>=tdiv2.offsetHeight*-1){
tdiv2.style.top=parseInt(tdiv2.style.top)-5+"px"
setTimeout("move4(second2_obj)",50)
}
else{
tdiv2.style.top=scrollerheight
tdiv2.innerHTML=slideimages[i]
if (i==slideimages.length-1)
i=0
else
i++
}
}

function startscroll(){
if (ie||dom){
first2_obj=ie? first2 : document.getElementById("first2")
second2_obj=ie? second2 : document.getElementById("second2")
move3(first2_obj)
second2_obj.style.top=scrollerheight
second2_obj.style.visibility='visible'
}
else if (document.layers){
document.main.visibility='show'
move1(document.main.document.first)
document.main.document.second.top=parseInt(scrollerheight)+5
document.main.document.second.visibility='show'
}
}

window.onload=startscroll

</script>


<ilayer id="main" width=&{scrollerwidth}; height=&{scrollerheight}; visibility=hide>
<layer id="first" left=0 top=1 width=&{scrollerwidth};>
<script language="JavaScript1.2">
if (document.layers)
document.write(slideimages[0])
</script>
</layer>
<layer id="second" left=0 top=0 width=&{scrollerwidth}; visibility=hide>
<script language="JavaScript1.2">
if (document.layers)
document.write(slideimages[dyndetermine=(slideimages.length==1)? 0 : 1])
</script>
</layer>
</ilayer>

<script language="JavaScript1.2">
if (ie||dom){
document.writeln('<div id="main2" style="position:relative;width:'+scrollerwidth+';height:'+scrollerheight+';overflow:hidden;">')
document.writeln('<div style="position:absolute;width:'+scrollerwidth+';height:'+scrollerheight+';clip:rect(0 '+scrollerwidth+' '+scrollerheight+' 0);left:0px;top:0px">')
document.writeln('<div id="first2" style="position:absolute;width:'+scrollerwidth+';left:0px;top:1px;">')
document.write(slideimages[0])
document.writeln('</div>')
document.writeln('<div id="second2" style="position:absolute;width:'+scrollerwidth+';left:0px;top:0px;visibility:hidden">')
document.write(slideimages[dyndetermine=(slideimages.length==1)? 0 : 1])
document.writeln('</div>')
document.writeln('</div>')
document.writeln('</div>')
}
</script>
</body>
</html>

edit the bold one

second:
input this code for your js

/***slide foto***/
var tax = "<iframe style='FILTER: chroma(color=#666666)' allowtransparency='true' frameborder=0 width='300' height='300' scrolling='no' src=URL HTML></iframe>";
addBox("LEFT","PHOTO GALLERY",tax,"div_967","6");

change with your url html :thumbsup:

preview:http://h1.ripway.com/agam12/ebeng2.html

4.Left-Right Image Slideshow Script

lfirst:
create new text file :thumbsdown:

<html>
<body>

<script language="JavaScript1.2">

/*
Left-Right image slideshow Script-
By Dynamic Drive (www.dynamicdrive.com)
For full source code, terms of use, and 100's more scripts, visit http://dynamicdrive.com
*/

///////configure the below four variables to change the style of the slider///////
//set the scrollerwidth and scrollerheight to the width/height of the LARGEST image in your slideshow!
var scrollerwidth='320px'
var scrollerheight='280px'
var scrollerbgcolor='white'
//3000 miliseconds=3 seconds
var pausebetweenimages=3000


//configure the below variable to change the images used in the slideshow. If you wish the images to be clickable, simply wrap the images with the appropriate <a> tag
var slideimages=new Array()
slideimages[0]='<img src="URL FOTO">'
slideimages[1]='<img src="URL FOTO">'
slideimages[2]='<img src="URL FOTO">'
slideimages[3]='<img src="URL FOTO">'
slideimages[4]='<img src="URL FOTO">'
//extend this list

///////Do not edit pass this line///////////////////////

var ie=document.all
var dom=document.getElementById

if (slideimages.length>1)
i=2
else
i=0

function move1(whichlayer){
tlayer=eval(whichlayer)
if (tlayer.left>0&&tlayer.left<=5){
tlayer.left=0
setTimeout("move1(tlayer)",pausebetweenimages)
setTimeout("move2(document.main.document.second)",pausebetweenimages)
return
}
if (tlayer.left>=tlayer.document.width*-1){
tlayer.left-=5
setTimeout("move1(tlayer)",50)
}
else{
tlayer.left=parseInt(scrollerwidth)+5
tlayer.document.write(slideimages[i])
tlayer.document.close()
if (i==slideimages.length-1)
i=0
else
i++
}
}

function move2(whichlayer){
tlayer2=eval(whichlayer)
if (tlayer2.left>0&&tlayer2.left<=5){
tlayer2.left=0
setTimeout("move2(tlayer2)",pausebetweenimages)
setTimeout("move1(document.main.document.first)",pausebetweenimages)
return
}
if (tlayer2.left>=tlayer2.document.width*-1){
tlayer2.left-=5
setTimeout("move2(tlayer2)",50)
}
else{
tlayer2.left=parseInt(scrollerwidth)+5
tlayer2.document.write(slideimages[i])
tlayer2.document.close()
if (i==slideimages.length-1)
i=0
else
i++
}
}

function move3(whichdiv){
tdiv=eval(whichdiv)
if (parseInt(tdiv.style.left)>0&&parseInt(tdiv.style.left)<=5){
tdiv.style.left=0+"px"
setTimeout("move3(tdiv)",pausebetweenimages)
setTimeout("move4(scrollerdiv2)",pausebetweenimages)
return
}
if (parseInt(tdiv.style.left)>=tdiv.offsetWidth*-1){
tdiv.style.left=parseInt(tdiv.style.left)-5+"px"
setTimeout("move3(tdiv)",50)
}
else{
tdiv.style.left=scrollerwidth
tdiv.innerHTML=slideimages[i]
if (i==slideimages.length-1)
i=0
else
i++
}
}

function move4(whichdiv){
tdiv2=eval(whichdiv)
if (parseInt(tdiv2.style.left)>0&&parseInt(tdiv2.style.left)<=5){
tdiv2.style.left=0+"px"
setTimeout("move4(tdiv2)",pausebetweenimages)
setTimeout("move3(scrollerdiv1)",pausebetweenimages)
return
}
if (parseInt(tdiv2.style.left)>=tdiv2.offsetWidth*-1){
tdiv2.style.left=parseInt(tdiv2.style.left)-5+"px"
setTimeout("move4(scrollerdiv2)",50)
}
else{
tdiv2.style.left=scrollerwidth
tdiv2.innerHTML=slideimages[i]
if (i==slideimages.length-1)
i=0
else
i++
}
}

function startscroll(){
if (ie||dom){
scrollerdiv1=ie? first2 : document.getElementById("first2")
scrollerdiv2=ie? second2 : document.getElementById("second2")
move3(scrollerdiv1)
scrollerdiv2.style.left=scrollerwidth
}
else if (document.layers){
document.main.visibility='show'
move1(document.main.document.first)
document.main.document.second.left=parseInt(scrollerwidth)+5
document.main.document.second.visibility='show'
}
}

window.onload=startscroll

</script>




<ilayer id="main" width=&{scrollerwidth}; height=&{scrollerheight}; bgColor=&{scrollerbgcolor}; visibility=hide>
<layer id="first" left=1 top=0 width=&{scrollerwidth}; >
<script language="JavaScript1.2">
if (document.layers)
document.write(slideimages[0])
</script>
</layer>
<layer id="second" left=0 top=0 width=&{scrollerwidth}; visibility=hide>
<script language="JavaScript1.2">
if (document.layers)
document.write(slideimages[1])
</script>
</layer>
</ilayer>

<script language="JavaScript1.2">
if (ie||dom){
document.writeln('<div id="main2" style="position:relative;width:'+scrollerwidth+';height:'+scrollerheight+';overflow:hidden;background-color:'+scrollerbgcolor+'">')
document.writeln('<div style="position:absolute;width:'+scrollerwidth+';height:'+scrollerheight+';clip:rect(0 '+scrollerwidth+' '+scrollerheight+' 0);left:0px;top:0px">')
document.writeln('<div id="first2" style="position:absolute;width:'+scrollerwidth+';left:1px;top:0px;">')
document.write(slideimages[0])
document.writeln('</div>')
document.writeln('<div id="second2" style="position:absolute;width:'+scrollerwidth+';left:0px;top:0px">')
document.write(slideimages[1])
document.writeln('</div>')
document.writeln('</div>')
document.writeln('</div>')
}
</script>
</body>
</html>

edit the bold one 

second:
input this code for your js

/***slide foto***/
var tax = "<iframe style='FILTER: chroma(color=#666666)' allowtransparency='true' frameborder=0 width='300' height='300' scrolling='no' src=URL HTML></iframe>";
addBox("LEFT","PHOTO GALLERY",tax,"div_967","6");

change with your url html :thumbsup:

preview:http://h1.ripway.com/agam12/ebeng3.html

good luck :penguin:

Last edited by EbengMaya (2008-07-18 09:59:13)

#2  2008-07-17 23:07:17

Santini
 sAnTiNi
Santini's display avatar
» FriendsterTalker
cHiBi LaRc
Location: Indonesia
Registered: 2007-01-12
Posts: 145
Last visit: Yesterday
Reputation: 1
Friendster

Re: [Tutorial]Compilation Image Slide In Foto Galery

be the first to comment =D


nice thanks 4 sharing it! :o

#3  2008-07-18 02:38:40

EbengMaya
 ebeng_emoholic
EbengMaya's display avatar
» FriendsterAgent
gelo ciah maneh hahaha
Location: garut aing mah
Registered: 2008-02-09
Posts: 2410
Last visit: 2009-01-06
Reputation: 100
Friendster

Re: [Tutorial]Compilation Image Slide In Foto Galery

Santini wrote:

be the first to comment =D


nice thanks 4 sharing it! :o

ur welcome sis and thanks for the comment :rose:

#4  2008-07-18 03:37:08

bles_212000
» FriendsterElite
.White Protector.
Registered: 2007-09-25
Posts: 3572
Reputation: 170

Re: [Tutorial]Compilation Image Slide In Foto Galery

wah.. thanks for sharing! great.. :thumbsup:

#5  2008-07-18 03:52:55

EbengMaya
 ebeng_emoholic
EbengMaya's display avatar
» FriendsterAgent
gelo ciah maneh hahaha
Location: garut aing mah
Registered: 2008-02-09
Posts: 2410
Last visit: 2009-01-06
Reputation: 100
Friendster

Re: [Tutorial]Compilation Image Slide In Foto Galery

bles_212000 wrote:

wah.. thanks for sharing! great.. :thumbsup:

ur welcome brother :rose:

#6  2008-07-18 04:00:32

simpleMe
 tax
» FriendsterWhiz
[i gz it's gudbye]
Class X
Location: BeHiNd EnEmY LiNeS
Registered: 2008-02-28
Posts: 3147
Last visit: 2009-01-05
Reputation: 206
Friendster

Re: [Tutorial]Compilation Image Slide In Foto Galery

nice nice nice :thumbsup:

i want to give you a +repu  =)
but it says  :arrow: You must spread some reputation point around before giving it to EbengMaya again

for sure i will give you nxt tym =)

Last edited by simpleMe (2008-07-18 04:08:11)


sO deeP, tHat iT didn'T eveN bleeD

#7  2008-07-18 07:49:08

EbengMaya
 ebeng_emoholic
EbengMaya's display avatar
» FriendsterAgent
gelo ciah maneh hahaha
Location: garut aing mah
Registered: 2008-02-09
Posts: 2410
Last visit: 2009-01-06
Reputation: 100
Friendster

Re: [Tutorial]Compilation Image Slide In Foto Galery

simpleMe wrote:

nice nice nice :thumbsup:

i want to give you a +repu  =)
but it says  :arrow: You must spread some reputation point around before giving it to EbengMaya again

for sure i will give you nxt tym =)

no problem my friend :D
i would say thanks to you brother for the idea this trick :D

#8  2008-07-18 08:16:57

dale
 Dale Pernz
dale's display avatar
» Moderator
Clique Mee
Location: G.Lagro.subd.
Registered: 2007-05-24
Posts: 7201
Last visit: Yesterday
Reputation: 67
Friendster

Re: [Tutorial]Compilation Image Slide In Foto Galery

wicked cool!! thanks for sharing bro. :thumbsup:


#9  2008-07-18 08:35:37

EbengMaya
 ebeng_emoholic
EbengMaya's display avatar
» FriendsterAgent
gelo ciah maneh hahaha
Location: garut aing mah
Registered: 2008-02-09
Posts: 2410
Last visit: 2009-01-06
Reputation: 100
Friendster

Re: [Tutorial]Compilation Image Slide In Foto Galery

dale wrote:

wicked cool!! thanks for sharing bro. :thumbsup:

ur welcome sir :rose:
thanks for your comment :D

#10  2008-07-18 08:54:55

onaj001
» FriendsterNewbie
Registered: 2008-05-15
Posts: 8
Last visit: 2009-01-01
Reputation: ~

Re: [Tutorial]Compilation Image Slide In Foto Galery

wer i can put the code??? on my css????

#11  2008-07-18 08:58:48

dale
 Dale Pernz
dale's display avatar
» Moderator
Clique Mee
Location: G.Lagro.subd.
Registered: 2007-05-24
Posts: 7201
Last visit: Yesterday
Reputation: 67
Friendster

Re: [Tutorial]Compilation Image Slide In Foto Galery

onaj001 wrote:

wer i can put the code??? on my css????

1st save it as html den put to ur js xetension.. :thumbsup:


#12  2008-07-18 09:36:52

regiehiozn
 I really Dont know
regiehiozn's display avatar
» FriendsterWhiz
friendship :]
Location: your place
Registered: 2007-08-27
Posts: 3074
Reputation: 79
Friendster

Re: [Tutorial]Compilation Image Slide In Foto Galery

hmm.. kinda liking it! thanks buddy!! :D

#13  2008-07-18 10:00:37

EbengMaya
 ebeng_emoholic
EbengMaya's display avatar
» FriendsterAgent
gelo ciah maneh hahaha
Location: garut aing mah
Registered: 2008-02-09
Posts: 2410
Last visit: 2009-01-06
Reputation: 100
Friendster

Re: [Tutorial]Compilation Image Slide In Foto Galery

dale wrote:

1st save it as html den put to ur js xetension.. :thumbsup:

thanks sir for the answer :thumbsup:

regiehiozn wrote:

hmm.. kinda liking it! thanks buddy!! :D

yup ur welcome buddy :D

#14  2008-07-31 17:32:04

eddi
 Edi
eddi's display avatar
» FriendsterManiac
o_0
Location: monarchy_britain
Registered: 2007-12-12
Posts: 859
Reputation: 71

Re: [Tutorial]Compilation Image Slide In Foto Galery

:O
waw cool :cool: buddy :thumbsup:
really nice trick/tutorial =)
and maybe some other time i will use it, help me okay :D

account file host saya meleduk kang ebeng :crybaby::crybaby:

btw 4 u ebeng :thumbsup: maya :wow:




#15  2008-08-01 03:34:19

rhownjohn
 rhownjohn
rhownjohn's display avatar
» FriendsterAddict
aNtI - eMo
Location: la union
Registered: 2007-08-11
Posts: 498
Last visit: 2008-12-29
Reputation: ~

Re: [Tutorial]Compilation Image Slide In Foto Galery

nice! cool trick hehe.. nice preview! bullet for my valentine i love dat band hehe..:thumbsup:


#16  2008-08-01 05:40:49

---xXirukiTepe---
 My name is Xiru
---xXirukiTepe---'s display avatar
» FriendsterElite
Bakugan Battle Brawler :)
The Undefeated Society
Location: KARAKURA TOWN
Registered: 2007-11-01
Posts: 5488
Reputation: 591
Friendster

Re: [Tutorial]Compilation Image Slide In Foto Galery

cool compilation... errr... nice 1



---> do not dare me... or else :arrow:

#17  2008-08-01 13:37:10

EbengMaya
 ebeng_emoholic
EbengMaya's display avatar
» FriendsterAgent
gelo ciah maneh hahaha
Location: garut aing mah
Registered: 2008-02-09
Posts: 2410
Last visit: 2009-01-06
Reputation: 100
Friendster

Re: [Tutorial]Compilation Image Slide In Foto Galery

eddi wrote:

:O
waw cool :cool: buddy :thumbsup:
really nice trick/tutorial =)
and maybe some other time i will use it, help me okay :D
account file host saya meleduk kang ebeng :crybaby::crybaby:



btw 4 u ebeng :thumbsup: maya :wow:

hohoho thank buddy for your +rep and comment :wow:

if u have problem you'll come back again buddy :P

rhownjohn wrote:

nice! cool trick hehe.. nice preview! bullet for my valentine i love dat band hehe..:thumbsup:

hehee ur welcome bro thanks :D

---xXirukiTepe--- wrote:

cool compilation... errr... nice 1

thanks :thumbsup:

#18  2008-09-05 10:41:30

OSJ_l3tM3B3
 shy
» FriendsterNewbie
"I'm letting you go"
Location: sumwer in B2N
Registered: 2008-08-28
Posts: 38
Last visit: 2008-10-15
Reputation: ~
Friendster

Re: [Tutorial]Compilation Image Slide In Foto Galery

thanks for sharing i will try this one to my friends' profile
coz this what he is lookin' for=D

#19  2008-09-05 11:07:04

ughy
» FriendsterNewbie
Registered: 2008-09-05
Posts: 3
Last visit: 2008-10-22
Reputation: ~

Re: [Tutorial]Compilation Image Slide In Foto Galery

tulung dunk ajarin aku bikin lay-out frend......:eh:
:arrow::arrow::arrow::arrow::arrow::arrow: kaburrr.....rrrr.rrrrr.rrrr....:penguin:

#20  2008-09-05 11:20:29

ijahcamille
 elicia camille
ijahcamille's display avatar
» FriendsterTalker
..cute..
Black n Pink Guild
Location: philippines
Registered: 2008-04-27
Posts: 123
Last visit: Today
Reputation: 2
Friendster

Re: [Tutorial]Compilation Image Slide In Foto Galery

tnx for sharing... :p


Search Friendstertalk

Board footer

FriendsterTalk is not affiliated with Friendster.com
Copyright © 2002–2009 PunBB

[ 11 queries - 0.074 second ]

Pay Per Click Ads by pay per click advertising by Kontera

FriendsterTalk.com x

Welcome to FriendsterTalk! You'll need to login in order to fully use all the features and view all the sections of this site.

Please register if you're not yet a member. =)