friendsterTalk - Friendster Forum

friendsterTalk - Friendster Forum

Welcome guest! Please Login or Register.

#1  2008-10-11 12:40:57

blurrycloud
» Moderator
blurrycloud's display avatar
[ - AchilleS - ]
Class-S
Location: Aikhee's Heaven
Registered: 2007-09-07
Posts: 2568
Reputation: 98

Compilation of WVM Image Effects (Updated Added New Effects)

If you are a WVM fanatic... This trick is for you :D :thumbsup:

This is what I'm talking about ...  :D




Compatibility: Working in All Major Browser :thumbsup:

Credits:
Netzgestah Scripts

Bro Shakiro214 (For Other Image Effect)
:arrow: Reflex
:arrow: Instant
:arrow: Glossarize

Bro ShirowMasamune

Class-S Family :thumbsup:

Requirements:
:arrow: WVM 2.2-2.3
:arrow: make up your mind, just choose 1 effect.. :lol: decide right away ok? :lol:



Procedure


:arrow: The Bevel Effect

Image Preview:

Click and copy the code inside this link and upload it to your own hosting site.
http://h1.ripway.com/cloudmp3/effects/bevel2.js


PHP EDITING
Insert the code below inside the head of tracker php(outside of the <?php codes?>), and :idea: don't forget to edit the links ok...

Code:

<script type="text/javascript" src="URL_OF_BEVEL.JS"></script>

Last Step: insert the code below before the closing of body tag(</body>) tag(outside of the <?php codes?>):

Code:

<script type="text/javascript">
<!--

function ClassSWvMCommand(){

var elements = document.getElementsByTagName('img');
var i = 0;
while (i < elements.length) {
  elements[i].className="bevel noshine islinear ishadeopac100 iglowcolccff00 ishadecolccff00";
  i++;
  }

}
ClassSWvMCommand();

//-->
</script>

We're done with the bevellion effect... :thumbsup:



:arrow: The Curl Effect

Image Preview:

Click and copy the code inside this link and upload it to your own hosting site.
http://h1.ripway.com/cloudmp3/curl.js


PHP EDITING
Insert the code below inside the head of tracker php(outside of the <?php codes?>), and :idea: don't forget to edit the links ok...

Code:

<script type="text/javascript" src="URL_OF_CURL.JS"></script>

Last Step: insert the code below before the closing of body tag(</body>) tag(outside of the <?php codes?>):

Code:

<script type="text/javascript">
<!--

function ClassSWvMCommand(){

var elements = document.getElementsByTagName('img');
var i = 0;
while (i < elements.length) {
  elements[i].className="curl isize75";
  i++;
  }

}
ClassSWvMCommand();

//-->
</script>

We're done with the Curl Effect :D



:arrow: The Sphere Effect

Image Preview:

Click and copy the code inside this links:
http://h1.ripway.com/cloudtwisted/testi…ere_lib.js
http://h1.ripway.com/cloudtwisted/testi…/sphere.js


PHP EDITING
Insert the code below inside the head of tracker php(outside of the <?php codes?>), and :idea: don't forget to edit the links ok...

Code:

<script type="text/javascript" src="URL_OF_SPHERE.JS"></script>
<script type="text/javascript" src="URL_OF_CVI_SPHERE_LIB.JS"></script>

Last Step: insert the code below before the closing of body tag(</body>) tag(outside of the <?php codes?>):

Code:

<script type="text/javascript">
<!--

function ClassSWvMCommand(){

var elements = document.getElementsByTagName('img');
var i = 0;
while (i < elements.length) {
  elements[i].className="sphere icolorff0033";
  i++;
  }

}
ClassSWvMCommand();

//-->
</script>

We're done with the sphere effect... :thumbsup:





:arrow: The Filmed Effect

Image Preview:

Click and copy the code inside this link and upload it to your own hosting site.
http://h1.ripway.com/cloudmp3/effects/filmed.js


PHP EDITING
Insert the code below inside the head of tracker php(outside of the <?php codes?>), and :idea: don't forget to edit the links ok...

Code:

<script type="text/javascript" src="URL_OF_FILM.JS"></script>

Last Step: insert the code below before the closing of body tag(</body>) tag(outside of the <?php codes?>):

Code:

<script type="text/javascript">
<!--

function ClassSWvMCommand(){

var elements = document.getElementsByTagName('img');
var i = 0;
while (i < elements.length) {
  elements[i].className="filmed icolorccff00";
  i++;
  }

}
ClassSWvMCommand();

//-->
</script>

We're done with the filmed effect ...




:arrow: The Slided Effect

Image Preview:

Click and copy the code inside this link and upload it to your own hosting site.
http://h1.ripway.com/cloudmp3/effects/slided.js


PHP EDITING
Insert the code below inside the head of tracker php(outside of the <?php codes?>), and :idea: don't forget to edit the links ok...

Code:

<script type="text/javascript" src="URL_OF_SLIEDED.JS"></script>

Last Step: insert the code below before the closing of body tag(</body>) tag(outside of the <?php codes?>):

Code:

<script type="text/javascript">
<!--

function ClassSWvMCommand(){

var elements = document.getElementsByTagName('img');
var i = 0;
while (i < elements.length) {
  elements[i].className="slided ibgcolor99ccff igradient6699aa horizontal";
  i++;
  }

}
ClassSWvMCommand();

//-->
</script>

We're done with the slided effect ... :lol:





:arrow: The Edge Effect

Image Preview:

Click and copy the code inside this link and upload it to your own hosting site.
http://h1.ripway.com/cloudmp3/effects/edge.js


PHP EDITING
Insert the code below inside the head of tracker php(outside of the <?php codes?>), and :idea: don't forget to edit the links ok...

Code:

<script type="text/javascript" src="URL_OF_EDGE.JS"></script>

Last Step: insert the code below before the closing of body tag(</body>) tag(outside of the <?php codes?>):

Code:

<script type="text/javascript">
<!--

function ClassSWvMCommand(){

var elements = document.getElementsByTagName('img');
var i = 0;
while (i < elements.length) {
  elements[i].className="edges imask1";
  i++;
  }

}
ClassSWvMCommand();

//-->
</script>

We're done with the edge effect ... :lol:




Refer here if you are confused with the placing of the codes:

Inside your PHP you can Inject the link of the image effect just like this.. Outside the <?php tag

<script type="text/javascript" src="URL_OF_EFFECT.JS"></script>
<?php

$phpowner="######";
$limit=1000;
?>

<?php



The function code should be place before the closing of the </body> tag


<script type="text/javascript">
<!--

function ClassSWvMCommand(){

var elements = document.getElementsByTagName('img');
var i = 0;
while (i < elements.length) {
  elements[i].className="CLASS_HERE";
  i++;
  }

}
ClassSWvMCommand();

//-->
</script>

</body>
</html>

I bolded some part so you can easily recognized the codes inside your Php file..








PS

•  Feel free to ask if you have any questions
•  Post your thoughts and appreciation if you like it.
•  Ok i can relax now.. Enjoy Guys

Last edited by blurrycloud (2008-10-26 12:35:43)


Back to my default status: School mode

#2  2008-10-11 12:51:01

regiehiozn
» FriendsterWhiz
regiehiozn's display avatar
friendship :]
Location: your place
Registered: 2007-08-27
Posts: 3054
Reputation: 79
Friendster

Re: Compilation of WVM Image Effects (Updated Added New Effects)

woot! i like the film effect!! :D  thanks for posting this.. very handy.. :D

#3  2008-10-11 12:51:21

cklahrckiey
» FriendsterFreak
cklahrckiey's display avatar
Tha Mafia
Class-S
Location: Lea's Heart
Registered: 2007-11-21
Posts: 1715
Reputation: 34

Re: Compilation of WVM Image Effects (Updated Added New Effects)

wow...i like the sphere!!!
ALL HAIL CLOUD =D




"You hit me, we hit you!"

#4  2008-10-11 12:52:26

blurrycloud
» Moderator
blurrycloud's display avatar
[ - AchilleS - ]
Class-S
Location: Aikhee's Heaven
Registered: 2007-09-07
Posts: 2568
Reputation: 98

Re: Compilation of WVM Image Effects (Updated Added New Effects)

haha sphere and filmed effect are :arrow: coolness...

bro Ck and regiee sankkyouu

Last edited by blurrycloud (2008-10-11 12:55:40)


Back to my default status: School mode

#5  2008-10-11 13:17:09

hannah_rhia19
» FriendsterManiac
hannah_rhia19's display avatar
E=mc²
Friendstertalk University
Location: Taguig City
Registered: 2008-05-02
Posts: 778
Reputation: 46
Friendster

Re: Compilation of WVM Image Effects (Updated Added New Effects)

great.. i'll try this one.. =)


#6  2008-10-11 13:18:01

kuntilanak
» Promoter
kuntilanak's display avatar
Registered: 2008-05-29
Posts: 4854
Reputation: 164

Re: Compilation of WVM Image Effects (Updated Added New Effects)

nice wvm brother...
good job....
thanks for share in here.....


#7  2008-10-11 13:43:38

blurrycloud
» Moderator
blurrycloud's display avatar
[ - AchilleS - ]
Class-S
Location: Aikhee's Heaven
Registered: 2007-09-07
Posts: 2568
Reputation: 98

Re: Compilation of WVM Image Effects (Updated Added New Effects)

First Post Updated
Added: 2 new image effects
Slided Effect
Edge Effect


Enjoy Choosing.. :lol:  :thumbsup:


Back to my default status: School mode

#8  2008-10-11 14:16:46

bobcbar
» SuperFriendster
bobcbar's display avatar
Location: Texas USA
Registered: 2007-04-08
Posts: 9239
Last visit: Today
Reputation: 248
Friendster

Re: Compilation of WVM Image Effects (Updated Added New Effects)

Thanks for sharing these effects for our tracker :D 

Can you give short example of where to add the codes? I'm a little confused :/

Last edited by bobcbar (2008-10-11 14:17:13)


#9  2008-10-11 14:29:44

blurrycloud
» Moderator
blurrycloud's display avatar
[ - AchilleS - ]
Class-S
Location: Aikhee's Heaven
Registered: 2007-09-07
Posts: 2568
Reputation: 98

Re: Compilation of WVM Image Effects (Updated Added New Effects)

Sir Bob .. Inside your PHP you can Inject the link of the image effect just like this

<script type="text/javascript" src="URL_OF_EFFECT.JS"></script>
<?php

$phpowner="######";
$limit=1000;
?>

<?php



The function code should be place before the closing of the </body> tag


<script type="text/javascript">
<!--

function ClassSWvMCommand(){

var elements = document.getElementsByTagName('img');
var i = 0;
while (i < elements.length) {
  elements[i].className="CLASS_HERE";
  i++;
  }

}
ClassSWvMCommand();

//-->
</script>

</body>
</html>

I bolded some part so you can easily recognized the codes inside your Php file.. Sir... :thumbsup:

Last edited by blurrycloud (2008-10-11 15:11:36)


Back to my default status: School mode

#10  2008-10-11 17:33:34

bobcbar
» SuperFriendster
bobcbar's display avatar
Location: Texas USA
Registered: 2007-04-08
Posts: 9239
Last visit: Today
Reputation: 248
Friendster

Re: Compilation of WVM Image Effects (Updated Added New Effects)

Thanks I will give this a try in a few :D


#11  2008-10-12 01:15:53

blurrycloud
» Moderator
blurrycloud's display avatar
[ - AchilleS - ]
Class-S
Location: Aikhee's Heaven
Registered: 2007-09-07
Posts: 2568
Reputation: 98

Re: Compilation of WVM Image Effects (Updated Added New Effects)

no problem sir.. anytime^ :thumbsup:


Back to my default status: School mode

#12  2008-10-12 03:54:31

♥ Banned Queen ♥
» FriendsterAddict
♥ Banned Queen ♥'s display avatar
Location: OLOngapo CIty
Registered: 2007-09-30
Posts: 400
Last visit: 2008-11-23
Reputation: 2
Friendster

Re: Compilation of WVM Image Effects (Updated Added New Effects)

ei,,, can we use the WVM of lordheinz????




♥ ••• peK'z of fLoWer RangErz ••• ♥


Love the Heart thAt hUrtz u, buT neVer Hurt tHe heArt thAt LoveZ u

#13  2008-10-12 04:00:13

blurrycloud
» Moderator
blurrycloud's display avatar
[ - AchilleS - ]
Class-S
Location: Aikhee's Heaven
Registered: 2007-09-07
Posts: 2568
Reputation: 98

Re: Compilation of WVM Image Effects (Updated Added New Effects)

♥ Banned Queen ♥ wrote:

ei,,, can we use the WVM of lordheinz????

yeah.. any version of wvm is ok...





available image effect for wvm 3.1-3.2

Instant Effect
Glossy Effect
Bevel Effect
Sphere Effect
Reflex Effect

Last edited by blurrycloud (2008-10-12 14:22:05)


Back to my default status: School mode

#14  2008-10-12 04:08:48

darksoulsilent
» FriendsterNewbie
darksoulsilent's display avatar
»One World One Dream«
Location: USA
Registered: 2008-04-09
Posts: 82
Last visit: 2008-11-27
Reputation: 2

Re: Compilation of WVM Image Effects (Updated Added New Effects)

ur so nice to share this...i would like  to thank you for sharing us! ;)

Last edited by darksoulsilent (2008-10-12 04:11:04)


:rose:»One World One Dream«:rose:

#15  2008-10-12 07:03:11

slashedkite
» FriendsterGeek
slashedkite's display avatar
Former LS member..
Friendstertalk University
Location: onloadhandler
Registered: 2007-01-23
Posts: 1077
Last visit: 2008-11-29
Reputation: 15
Friendster

Re: Compilation of WVM Image Effects (Updated Added New Effects)

oh, so this is the trick that you're telling to me.. nice compilation sir.. you're so cool.. that's why i keep on admiring you in tweaking.. hehe! :lol:

i'll go for the edge effect because it fits to my new layout.. =):thumbsup:



:ninja::ninja:

#16  2008-10-12 07:07:06

blurrycloud
» Moderator
blurrycloud's display avatar
[ - AchilleS - ]
Class-S
Location: Aikhee's Heaven
Registered: 2007-09-07
Posts: 2568
Reputation: 98

Re: Compilation of WVM Image Effects (Updated Added New Effects)

good choice bro ^ :thumbsup:  sankyouuuuuuuu


Back to my default status: School mode

#17  2008-10-12 13:09:00

♥ Banned Queen ♥
» FriendsterAddict
♥ Banned Queen ♥'s display avatar
Location: OLOngapo CIty
Registered: 2007-09-30
Posts: 400
Last visit: 2008-11-23
Reputation: 2
Friendster

Re: Compilation of WVM Image Effects (Updated Added New Effects)

blurrycloud wrote:

yeah.. any version of wvm is ok...

can u give me a sample??????




♥ ••• peK'z of fLoWer RangErz ••• ♥


Love the Heart thAt hUrtz u, buT neVer Hurt tHe heArt thAt LoveZ u

#18  2008-10-12 13:16:39

blurrycloud
» Moderator
blurrycloud's display avatar
[ - AchilleS - ]
Class-S
Location: Aikhee's Heaven
Registered: 2007-09-07
Posts: 2568
Reputation: 98

Re: Compilation of WVM Image Effects (Updated Added New Effects)

Php codes of Wvm2.3 and wvm modified by heinz is just the same... the only difference is the features of each WVM..
:idea: So the process of adding this trick is just the same...


Inside your PHP you can Inject the link of the image effect just like this

<script type="text/javascript" src="URL_OF_EFFECT.JS"></script>
<?php

$phpowner="######";
$limit=1000;
?>

<?php



The function code should be place before the closing of the </body> tag


<script type="text/javascript">
<!--

function ClassSWvMCommand(){

var elements = document.getElementsByTagName('img');
var i = 0;
while (i < elements.length) {
  elements[i].className="CLASS_HERE";
  i++;
  }

}
ClassSWvMCommand();

//-->
</script>

</body>
</html>

I bolded some part so you can easily recognized the codes inside your Php file..


Back to my default status: School mode

#19  2008-10-12 13:58:21

kuntilanak
» Promoter
kuntilanak's display avatar
Registered: 2008-05-29
Posts: 4854
Reputation: 164

Re: Compilation of WVM Image Effects (Updated Added New Effects)

Intensively the tutorial...... Asked whether not heavy the internet connection if the person saw our FS appearance???? Because of this WVM scrolling...


#20  2008-10-12 14:23:37

blurrycloud
» Moderator
blurrycloud's display avatar
[ - AchilleS - ]
Class-S
Location: Aikhee's Heaven
Registered: 2007-09-07
Posts: 2568
Reputation: 98

Re: Compilation of WVM Image Effects (Updated Added New Effects)

kuntilanak wrote:

Asked whether not heavy the internet connection if the person saw our FS appearance???? Because of this WVM scrolling...

You can remove the Scrolling Effect for the benefits of your viewer with slow internet connection..

Well it's up to you... :thumbsup: =)

Last edited by blurrycloud (2008-10-12 14:25:05)


Back to my default status: School mode

Search Friendstertalk

Board footer

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

[ 28 queries - 0.968 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. =)