View topic - Looking for a site
Looking for a site
7 posts
• Page 1 of 1
Looking for a site
I'm looking for a Japanese-learning website I found rather recently. I might have even been linked to it from one of the posts here. I think it was a university professor's site for her students. I distinctly remember vocabulary charts where if you rolled over a word with your mouse, you would see the answer for it. It probably used Javascript, but I'm not sure. There were no popups like Rikaichan or alt tags. I'd mostly like to find the site so I can use the code to make my own site for learning the language.
Funny sidenote: I posted this on the Remembering the Kanji forum and somebody called me "fartman."
Funny sidenote: I posted this on the Remembering the Kanji forum and somebody called me "fartman."
-

Cyborg Ninja - Posts: 122
- Joined: Tue 08.29.2006 8:16 pm
Re: Looking for a site
Sorry I don't know any site like that, with vocab charts and stuff, but I do know Tae Kim's Guide to Japanese has something similar to what you said, i.e, you can put your mouse over most words (usually the ones in kanji) and it will show the definition with the hiragana. Maybe you can some how use that site?
Here's a random page that shows what I'm talking about, if you aren't familiar with the site already: http://www.guidetojapanese.org/learn/gr ... iclesintro
Here's a random page that shows what I'm talking about, if you aren't familiar with the site already: http://www.guidetojapanese.org/learn/gr ... iclesintro
- TJack
- Posts: 75
- Joined: Wed 03.26.2008 4:37 pm
- Location: Tennesse
- Native language: 英語
- Gender: Male
Re: Looking for a site
Cyborg Ninja wrote:
The page displayed a word on the left, and the meaning on the right while hovering the mouse over the word on the left.
^_^
-

Dustin - Posts: 541
- Joined: Sun 07.13.2008 9:41 pm
- Native language: English
- Gender: Male
Re: Looking for a site
Let me nip this in the bud. The page I'm referring to has NO POPUPS whatsoever. This cancels out Taekim's site which has popups made out of alt tags. A popup is something that appears on top of the window, over words, images, or whatever is below it. What I'm referring to does not do so: it is merely blank before rolling over the word to the left of it.
-

Cyborg Ninja - Posts: 122
- Joined: Tue 08.29.2006 8:16 pm
Re: Looking for a site
Cyborg Ninja wrote:..... I distinctly remember vocabulary charts where if you rolled over a word with your mouse, you would see the answer for it. It probably used Javascript, but I'm not sure. There were no popups like Rikaichan or alt tags. I'd mostly like to find the site so I can use the code to make my own site for learning the language. .....
Is this the effect you are after?
Define the following classes in your CSS. Style sheet mystyle.css is used in my example.
- Code: Select all
.hidden { display: none; }
.unhidden { display: block; }
This is the HTML document;
- Code: Select all
<html>
<head>
<!-- (C) Copyright: Chikara :p -->
<link rel=stylesheet type="text/css" href="./mystyle.css">
<script type="text/javascript">
function unhide(divID) {
var item = document.getElementById(divID);
if (item) {
item.className=(item.className=='hidden')?'unhidden':'hidden';
}
}
</script>
</head>
<body>
<b>Example of Showing and Hiding on Mouse Over</b><p>
Move you mouse cursor over a question to reveal the answer.<p>
<table>
<tr> <td><span onmouseover="unhide('_A1')" onmouseout="unhide('_A1')">Question 1</span></td> <td><div id="_A1" class="hidden">Answer 1</div></td> </tr>
<tr> <td><span onmouseover="unhide('_A2')" onmouseout="unhide('_A2')">Question 2</span></td> <td><div id="_A2" class="hidden">Answer 2</div></td> </tr>
<tr> <td><span onmouseover="unhide('_A3')" onmouseout="unhide('_A3')">Question 3</span></td> <td><div id="_A3" class="hidden">Answer 3</div></td> </tr>
<tr> <td><span onmouseover="unhide('_A4')" onmouseout="unhide('_A4')">Question 4</span></td> <td><div id="_A4" class="hidden">Answer 4</div></td> </tr>
</table>
</body>
</html>
This works in IE8 and Firefox 3.6.8

This thread probably belongs in the Computers & Technology forum.
Don't complain to me that people kick you when you're down. It's your own fault for lying there
-

chikara - Posts: 3574
- Joined: Tue 07.11.2006 10:48 pm
- Location: Australia (SA)
- Native language: English (Australian)
- Gender: Male
Re: Looking for a site
Thanks Chikara, that's pretty much what the site did. All I have to do now is create a table and perhaps tie it with a database. I plan on using it for personal study of Japanese vocab.
-

Cyborg Ninja - Posts: 122
- Joined: Tue 08.29.2006 8:16 pm
Re: Looking for a site
Just to add, I was on tae kim and on this page noticed something SIMILAR to what you described
http://www.guidetojapanese.org/learn/gr ... ofbeing_ex
It's not a rollover, and it reveals all the answers at once, but it's something I found, and reminded me of this thread
http://www.guidetojapanese.org/learn/gr ... ofbeing_ex
It's not a rollover, and it reveals all the answers at once, but it's something I found, and reminded me of this thread

-

Dustin - Posts: 541
- Joined: Sun 07.13.2008 9:41 pm
- Native language: English
- Gender: Male
7 posts
• Page 1 of 1
Return to Learning Materials Reviews & Language Learning tips
Who is online
Users browsing this forum: No registered users and 9 guests







Click to sign up
