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.

HTML Forum


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



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Closed Thread
How did they do this??
Old 01-07-2011, 06:07 PM How did they do this??
Extreme Talker

Posts: 246
Name: Patric
Trades: 0
Hi there, I'm struggling to figure this out.

I am going to be creating an online community site, and will need to figure out how this site was able to use the rollover function used at the top:

http://www.oracleerp.org/main/summary

The rollover function actually uses an iframe source to bring this page into it:

http://www.oracleerpads.com/Description_New/index1.html


Now, what I'm not sure about, is how that background image at the top is automatically loaded into it when nothing is moused over... not quite sure how that works.

Can someone give a bit of guidance? I don't typically work with frames.
Reckoner is offline
View Public Profile
 
 
Register now for full access!
Old 01-08-2011, 03:21 AM Re: How did they do this??
Junior Talker

Posts: 2
Name: amber
Trades: 0
What I have understood according to that /index.html is a javascript based rollover containing images only there is no text involved in it and the default is set that comes up without mouse over, If there is any thing else please make it clear. Happy to help.
____________________________________
website design rewari | web templates rewari
amberjoe is offline
View Public Profile
 
Old 01-08-2011, 03:31 AM Re: How did they do this??
Average Talker

Posts: 15
Name: Kannan
Trades: 0
it seems like a simple javascript functions used. Better you can try with jQuery. do some search in google for "jQuery tabs".
kannan is offline
View Public Profile Visit kannan's homepage!
 
Old 01-08-2011, 12:18 PM Re: How did they do this??
LadynRed's Avatar
Defies a Status

Posts: 10,017
Location: Tennessee
Trades: 0
You can create that entire menu w/o javascript using CSS.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

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


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

LadynRed is offline
View Public Profile
 
Old 01-10-2011, 11:38 AM Re: How did they do this??
Extreme Talker

Posts: 246
Name: Patric
Trades: 0
Hi Lady n red,

Can you possibly provide insight as to how I would be able to do this using entirely CSS?
Reckoner is offline
View Public Profile
 
Old 01-10-2011, 02:22 PM Re: How did they do this??
LadynRed's Avatar
Defies a Status

Posts: 10,017
Location: Tennessee
Trades: 0
You can try these resources:

http://purecssmenu.com/

http://www.cssplay.co.uk/menus/

http://www.webdesignerwall.com/tutor...dropdown-menu/
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

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


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

LadynRed is offline
View Public Profile
 
Old 01-11-2011, 07:03 PM Re: How did they do this??
Extreme Talker

Posts: 246
Name: Patric
Trades: 0
thanks everyone,

the Jquery tabs I think will work nicely.

http://jqueryui.com/demos/tabs/#mouseover
Reckoner is offline
View Public Profile
 
Old 01-15-2011, 05:25 AM Re: How did they do this??
Super Spam Talker

Posts: 879
Name: Paul W
Trades: 0
If LadynRed will forgive me, the point about doing it in CSS is that you're not hitting server and local machine through jquery calls that really aren't necessary.
__________________

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


*** New:
Please login or register to view this content. Registration is FREE
PaulW is offline
View Public Profile
 
Old 01-16-2011, 05:04 PM Re: How did they do this??
Extreme Talker

Posts: 246
Name: Patric
Trades: 0
So, I can't find ANY examples at all on how this could be done using CSS only.

I mean I need it so that when you roll over the tabs, content appears below / above them. If I saw some source code examples I could get a sense but that stu nicholls site doesn't have really what I need.

If some one could please just point me in the right direction, I will get to it and figure it out. THANKS!
Reckoner is offline
View Public Profile
 
Old 01-16-2011, 09:28 PM Re: How did they do this??
Marik's Avatar
Skilled Talker

Posts: 99
Trades: 0
This is very easy to do with jQuery:

Code:
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>

<style type="text/css">
    .content { border: 1px solid red; width: 500px; height: 250px; font-size: 15px; text-align: center; line-height: 250px; }
</style>

<script type="text/javascript">

    $(document).ready(function() {

        $('a.about').mouseover(function() {
            $('div.content').html('This is the about text');
        });
        $('a.services').mouseover(function() {
            $('div.content').html('This is the service text');
        });
        $('a.contact').mouseover(function() {
            $('div.content').html('This is the contact text');
        });
        $('a').mouseout(function() {
            $('div.content').html('Welcome to our site, hover over any of the below links to learn more about us');
        });

    });

</script>
HTML Code:
<div class="content">
    Welcome to our site, hover over any of the below links to learn more about us
</div><!-- content -->

<a href="javascript:void(0)" class="about">About Us</a> | <a href="javascript:void(0)" class="services">Our Services</a> | <a href="javascript:void(0)" class="contact">Contact Us</a>
It can also be done easily using vanilla js in case you don't want to load an entire library for one simple effect. If you want to go that route you can use the getElementById and innerHTML functions of javascript to replace the selection by class and .html() functions of jQuery.
__________________

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

Last edited by Marik; 01-16-2011 at 09:30 PM..
Marik is offline
View Public Profile
 
Old 01-16-2011, 11:24 PM Re: How did they do this??
Extreme Talker

Posts: 246
Name: Patric
Trades: 0
Awesome!

Thanks for that. Cake, and exactly what I need I think.
Reckoner is offline
View Public Profile
 
Old 02-18-2011, 12:59 PM Re: How did they do this??
Skilled Talker

Posts: 72
Location: singapore
Trades: 0
well this can be done on css only.

<li> <--- background :hover use another background.
__________________

Please login or register to view this content. Registration is FREE
zelllibin is offline
View Public Profile Visit zelllibin's homepage!
 
Closed Thread     « Reply to How did they do this??
 

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.90738 seconds with 12 queries