Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

Website Design Forum


You are currently viewing our Website Design Forum as a guest. Please register to participate.
Login



Freelance Jobs

Reply
Old 08-21-2010, 05:00 AM Flying Words
Junior Talker

Posts: 1
Name: Mike
Trades: 0
I've just put a free online tool for making webpages where words fly out of the page towards you at:

www unmissablejapan.com/flying-words

I won't try to explain it in more detail as a quick look will let you see what it's all about. It's all javascript/html/css - so it loads very fast, and should be easy to modify if you want to customise the effect.

It'd be great to hear from anyone who finds this useful

Last edited by chrishirst; 08-21-2010 at 09:20 AM..
Mike2417 is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 08-21-2010, 10:03 AM Re: Flying Words
CSM
CSM's Avatar
Front-End Developer

Posts: 297
Name: Michael Pehl
Location: Palma de Mallorca
Trades: 0
Looks like the Windows 3.1 screen saver

Nice job.
__________________
Chief Web Officer / Front-End Developer / System Engineer

Please login or register to view this content. Registration is FREE
-
Please login or register to view this content. Registration is FREE
CSM is offline
Reply With Quote
View Public Profile Visit CSM's homepage!
 
Old 08-23-2010, 02:43 AM Re: Flying Words
moffonachilli's Avatar
Junior Talker

Posts: 1
Name: moffona chilli
Trades: 0
I need help ive asked everyone in myspace even my friends and they say they dont now and i really really want to put up something up and also how do u put color on the words well thaxs for the help I heard this answer but it didnt work with the flying word <marquee>youre message</maurquee> it didnt work so please answer my question well thanxs alot..................
__________________

Please login or register to view this content. Registration is FREE
moffonachilli is offline
Reply With Quote
View Public Profile Visit moffonachilli's homepage!
 
Old 08-26-2010, 02:50 AM Re: Flying Words
Banned

Posts: 14
Name: twigh
Trades: 0
Just insert this coding in the body part for the flying link.
Probably HTML/CSS are used for the flying coding.As i am getting new technique or code will inform you,marquee is for the running text not for flying text.

<style>
.fly {
font-family: Arial, Helvetica;
font-size: large;
color: #0000ff;
position: absolute;
visibility: hidden;
z-index: 2;
}

.logo {
font-family: Zap-Chance, cursive;
font-size: xx-large;
color: #ff0000;
position: absolute;
top: 0px;
left: 30px;
visibility: visible;
z-index: 1;
}

.desc {
text-align: center;
font-family: Arial, Helvetica;
color: #cc6699;
position: absolute;
top: 220px;
left: 40px;
width: 400px;
visibility: hidden;
z-index: 0;
}
</style>
<script type="text/javascript" language="JavaScript">


/* Show an object */
function showObject(object) {
object.visibility = VISIBLE;
}

/* Hide an object */
function hideObject(object) {
object.visibility = HIDDEN;
}

/* Slide the company logo from top to middle */
function slideLogo(from, to) {
if (from < to) {
company.top = (from += 10);
setTimeout('slideLogo(' + from + ',' + to + ')', 75);
}
else initObjects();
}

/* Rotate selected objects */
function rotateObjects() {
for (var i = 0; i < pos.length; i++) {
pos[i] += inc; objects[i].visibility = 'visible';
objects[i].left = (r * Math.cos(pos[i])) + xoff
objects[i].top = (r * Math.sin(pos[i])) + yoff;
}
rotateTimer = setTimeout("rotateObjects()", 75);
}

/* Initialize selected objects for rotation */
function initObjects() {
/* Here is the array of HTML elements that will be rotated, from fly1 to fly4
Just put the shortcut variables to the HTML elements in this little array
and they will be rotated automatically */
objects = new Array(fly1, fly2, fly3, fly4);
pos = new Array();
pos[0] = 0;
for (var i = 1; i < objects.length; i++) {
pos[i] = parseFloat(pos[i - 1] + ((2 * pi) / objects.length));
}
rotateObjects();
}

/* Variables for rotating objects */
var objects;
var pos;
var r = 160; // radius
var xoff = 180; // x offset
var yoff = 170; // y offset
var pi = Math.PI; // get pi
var inc = pi / 180; // degrees per rotation cycle
var objects; // objects to be rotated
var pos; // position for objects

</script>

<SCRIPT LANGUAGE="JavaScript">

<!--
function exit(url) {
if (window.name == "") {
top.location.href = url;
} else {
top.opener.top.location.href = url;
top.close();
}
}
//-->

</SCRIPT>
</head>
<body bgcolor="#ffe4c4" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
<div id = "fly1" class = "fly">
<a href = "contents.htm" onMouseOver = "showObject(desc1)" onMouseOut = "hideObject(desc1)">Introduction</a><br>
</div>
<div id = "fly2" class = "fly">
<a href = "navigationaids.htm" onMouseOver = "showObject(desc2)" onMouseOut = "hideObject(desc2)">Navigation Aids</a><br>
</div>
<div id = "fly3" class = "fly">
<a href = "coloursandgraphics.htm" onMouseOver = "showObject(desc3)" onMouseOut = "hideObject(desc3)">Colours and Graphics</a><br>
</div>
<div id = "fly4" class = "fly">
<a href = "funstuff.htm" onMouseOver = "showObject(desc4)" onMouseOut = "hideObject(desc4)">Fun Stuff</a><br>
</div>
<div id = "company" class = "logo">JavaScript Resources</div>
<div id = "desc1" class = "desc">
Introduction and links
</div>
<div id = "desc2" class = "desc">
Aids to Web site navigation
</div>
<div id = "desc3" class = "desc">
Playing with colours and images
</div>
<div id = "desc4" class = "desc">
Games, quizzes, etc.
</div>
<script type="text/javascript" language="JavaScript">

/* Simple version detection */
var isNS = (navigator.appName == "Netscape" && parseInt(navigator.appVersion) >= 4);

/* They can be used in place
of hidden and visible because on occasion Navigator has problems with the two */
var HIDDEN = (isNS) ? 'hide' : 'hidden';
var VISIBLE = (isNS) ? 'show' : 'visible';

/* Create shortcut variables for different absolutely positioned elements */
var fly1 = (isNS) ? document.fly1 : document.all.fly1.style;
var fly2 = (isNS) ? document.fly2 : document.all.fly2.style;
var fly3 = (isNS) ? document.fly3 : document.all.fly3.style;
var fly4 = (isNS) ? document.fly4 : document.all.fly4.style;
var company = (isNS) ? document.company : document.all.company.style;
var desc1 = (isNS) ? document.desc1 : document.all.desc1.style;
var desc2 = (isNS) ? document.desc2 : document.all.desc2.style;
var desc3 = (isNS) ? document.desc3 : document.all.desc3.style;
var desc4 = (isNS) ? document.desc4 : document.all.desc4.style;

/* Begin the sliding of the company logo */
slideLogo(0, 140);
</script>
<div id="footer+text" style="position: absolute; left:200; top: 370"><layer name="footer+text" left=200 top=370><form>
<input type=button value="Close Window" onClick="exit('fly.htm');">
</form> </layer></div>
twigh is offline
Reply With Quote
View Public Profile
 
Old 08-26-2010, 03:54 AM Re: Flying Words
Clark.Angus's Avatar
Average Talker

Posts: 27
Name: Sufyan
Trades: 0
thank you very much i have been searching for such kind of page.

Last edited by chrishirst; 08-28-2010 at 11:12 AM..
Clark.Angus is offline
Reply With Quote
View Public Profile
 
Old 09-02-2010, 05:12 AM Re: Flying Words
Junior Talker

Posts: 4
Name: smritipakar
Trades: 0
I like your flying word it is really helpful to me, I had use this in my project it is really work nice due to that it look also fabulous, mind blowing great work keep it up.
__________________

Please login or register to view this content. Registration is FREE
smritipakar is offline
Reply With Quote
View Public Profile
 
Old 09-02-2010, 02:23 PM Re: Flying Words
Banned

Posts: 242
Name: Vijay.Seo
Location: Delhi,India
Trades: 0
The tool is quite good.
seo.vijay is offline
Reply With Quote
View Public Profile Visit seo.vijay's homepage!
 
Old 09-02-2010, 04:51 PM Re: Flying Words
lynxus's Avatar
Awesomeo-Maximo

Posts: 1,615
Location: UK
Trades: 1
cool, brings back the olde windows days.
And the jonny castaway screensaver
__________________

Please login or register to view this content. Registration is FREE

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

Please login or register to view this content. Registration is FREE


lynxus is offline
Reply With Quote
View Public Profile Visit lynxus's homepage!
 
Reply     « Reply to Flying Words
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.30498 seconds with 12 queries