Distinguishing Between Multiple Map Areas Same Image
Jan 3, 2010
The idea is simple, one area map replaces the image with image A, the other area map replaces the image with image B sort of like this page. The code I have so far is below. How this is supposed to go?
Code:
img.imenu {margin: 2px 0px; height: 20px;
width: 175px; border-width: 0px;
border-width: 0px; margin-top: 2px; margin-bottom:2px;}
</style>
<script type="text/javascript">
function mouseOverMap(area) {
if (var image = document.getElementById("TheMap")){
image.src = image.src.replace("old.png","new.png");
} else if (var image = document.getElementById("TheMap2")){
image.src = image.src.replace("old.png","new2.png");
} function mouseOutMap(area) {
var image = document.getElementById("TheMap"); // not sure what you want to do with this
image.src = image.src.replace("new.png","old.png");
}
</script>
Code:
<div>
<img id="TheMap" alt="" src="images/logo1_4old.png" width="530" height="102" USEMAP="#red" USEMAP="#orange"/>
<map name="red">
<area id="area1" shape="polygon" coords="59,47, 59,7, 68,24, 86,19" href="[URL]"
onmouseover="mouseOverMap(this);" onmouseout="mouseOutMap(this);" />
</map>
<map name="orange">
<area id="area2" shape="polygon" coords="62,50, 89,20, 85,39, 102,49" href="[URL]"
onmouseover="mouseOverMap(this);" onmouseout="mouseOutMap(this);" />
</map>
View 1 Replies
ADVERTISEMENT
Mar 31, 2010
I have been asked to make a page for a website that wants a series of rollover images and when you roll over a particular image, there are 2 buttons to choose from which take you to another area of the site. I am a bit stuck -I know how to create a simple rollover image...but is there a way to create a rollover image that when you rollover it, yiou can choose from 2 different hyperlinks?(ie. two hotspots I think?) An example of the page is shown below:
Before rollover: [URL]
After Rollover: [URL]
View 4 Replies
View Related
Feb 19, 2010
i am using two textareas for editing by tinymce, its working fine in ie and ff but in safari it is opening the first textarea editor only. This was my code.
tinyMCE.init({
// General options
mode : "textareas",
//mode : "exact",
elements : "description,pedigree",
theme : "advanced",
[Code]....
View 2 Replies
View Related
Oct 8, 2009
I have some image with map. Main idea is to make some special roll-over effect on every area.
How can I make HOVER on each area of image?
[Code]...
View 1 Replies
View Related
May 15, 2009
I am looking for a plugin for jQuery to mark areas on image and select a friend like you can do it in some social networks to mark your friends on fotos!
View 1 Replies
View Related
Aug 23, 2010
I am trying to match a passed parameter on a url to an area on an image map. So far I can find the correct area using
Code:
$('#mediummap area').each(function(i){
href = $(this).attr('href');
if (href == id) {
alert('Found ID ' + id);
}});}});
But next I need to retrieve the co-ordinates for the Area. I have tried
Code:
coords = $('this').attr('coords');
And
Code:
coords = $('this').coords();
I can not seem to get the value back, just an undefined return. What I want to do is to find the point on the image map and then centre that point with in the viewport for the image (large image, small viewport).
View 1 Replies
View Related
Aug 20, 2011
I cannot get javascript to change an image to make a "pressable" button when select areas of an image map are clicked. I used index.html for testing purposes.
<body>
<img name="light" src="standard-light.png" width="60" height="180" border="0"
usemap="#lightmap"></a>
<map name="lightmap" >
[Code].....
View 1 Replies
View Related
Jan 24, 2010
I am trying to handle keystrokes on a text input element, in the keydown event. I need to know what character is about to be inserted into the string. I am able to get it for almost all letters, numbers and symbols using a combination of event.shiftKey, event.charCode, and String.fromCharCode() and some hard-coded lookup tables. (i'm aware that this is probably not going to work on non-standard/non-american keyboard layouts)
Unfortunately I can't get the character for a few: question mark, angle brackets, underbar, colon, and a few others. They all have charCode of zero, and nothing else in the event indicates which is which. Other than waiting till the element's value has changed (i.e. the keyup or keypress event), what can I do to tell which key is pressed?
[Code]...
View 3 Replies
View Related
Sep 27, 2010
I am using jquery with the cookie plugin and I have multiple image buttons that can hide/show multiple elements. My question is how can I add a cookie to this code to remember whether each separate element is opened or closed?
The code,
$(document).ready(function() {
// choose text for the show/hide link - can contain HTML (e.g. an image)
var showText='<div class="expanddown"></div>';
var hideText='<div class="expandup"></div>';
// initialise the visibility check
var is_visible = false;
// append show/hide links to the element directly preceding the element with a class of "toggle"
$('.toggle').prev().append('<a href="#" class="togglelink">'+hideText+'</a>');
// capture clicks on the toggle links
$('a.togglelink').click(function() {
// switch visibility
is_visible = !is_visible;
// change the link depending on whether the element is shown or hidden
$(this).html( (!is_visible) ? hideText : showText);
// toggle the display - uncomment the next line for a basic "accordion" style
//$('.toggle').hide();$('a.toggleLink').html(showText);
$(this).parent().next('.toggle').slideToggle('fast');
// return false so any link destination is not followed
return false;
});
});
HTML,
<a class="togglelink" href="#"></a>
<div class="toggle">
Content
</div>
View 6 Replies
View Related
Aug 14, 2006
As you can see I am totally lost, I have been trying to work this out for several weeks now without any progress, I need to make about 20 of these displays each include 4 buttons that will none/block the related text area below the display for a visual please see: Code:
View 3 Replies
View Related
Dec 21, 2006
This is sort of a design/javascript question. It involves CSS
rendering in dynamic areas of a page using IE.
E 6 & 7
HI There, We've created some example static html pages (using CSS)
that look great in IE. We are now converting these into dynamic pages
that use javascript to dynamically update certain areas of the page.
After the conversion the dynamic areas of the page do not render the
CSS styles (the styles are not displaying correctly). This only
happens in IE. The styles display correctly for other browsers
(firefox).
I am using the javascript DOM to update the dynamic areas of the site.
For example when creating a <atag that needs attribute
class=over....I add the following code.
linktag = document.createElement("a");
linktag.setAttribute("href",pathName);
linktag.setAttribute("class","over");
it's the class=over that is not rendering when the page is updated.
Has anyone seen this?
View 3 Replies
View Related
Sep 29, 2005
I would like to build an HTML page that has four content areas. The first with 3 links that when clicked chage what is shown in the other 3 - and so changing the default content in these sections. The content for these sections will be contained in seperate HTML files sitting on the same server.
I understand this can be done without refreshing the page and believe JavaScript and Ajax is the best method to do this. Any advice?
View 2 Replies
View Related
Sep 25, 2010
I'd like to provide users with help regarding the form input areas with a help popup dialog box. I don't like the term popup because so many people block popups. I'll be providing a question mark next to the feature and if clicked would like a customizable dialog box to show with help text. There will be many of these involved and would like to know the best approach.
View 3 Replies
View Related
Nov 7, 2010
I was trying to apply 2 javascript effects on one image.on the image. It works like it should until I put in the light box effect.The lightbox also works, it just depends on which order I put them in the code on which one will come through.I am relatively new to javascript and I am learning as I go along. Below I inserted part of my code geared towards these two effects. I know I have everything else in the code correct (the body) because they work individually, just not put together (or maybe I have to put a line of code in the body to enable it to work?). Essentially, I want the image to be dulled out when the visitor opens the page, get brighter when they roll over it, then trigger the lightbox when they click on it.
The easy option would be to use an image swap for the dull/bright mouseOver effect; however, I like the way it is done by tutorialhero.The first three scripts are for the light box and the second two are for the rollover. The style sheets are as follows- lightbox, about page layout, rollover effect. Is it possible to have both these effects on the same image?
View 4 Replies
View Related
Feb 4, 2011
I have been using Flash to create a slide show that starts with a single image. Then the image caption slides up from the bottom followed by a longer description coming in from the right side of the image (which includes links in the text). The description and caption then slide away, and a new image is transitioned into the old image's place. Is it possible to create something like this with jQuery? The s3slider jQuery plugin is very similar to what I'm looking for, but I can't seem to get two captions to appear over the same image.
View 1 Replies
View Related
Nov 19, 2009
I implemented some coding tor create a random image on the page with a corresponding 'alt' tag and all was fine for a while...Then I got ambitions and modified the script to generate code that would generate two seperate sets of random image and associated 'alt' tag pairs.... and all seemed fine for a while....... however after having used the code on my page for a while I notice that occasionally I get a broken file link to the image which then fails to show... and shows the 'alt' text of "undefined".All the code links to images are correct and all images DO show from time to time with the tags.... only occasionally this extra blank/undefined pair is generatedHere's the code...
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
// Set up the image files to be used.
[code]....
View 5 Replies
View Related
Apr 7, 2010
I'm trying to create a portfolio website in which I have multiple galleries showing different work on the same page . Each to work separately and change the default image on click. I have seen it work here: h[URL]
I was able to follow this: [URL] but then couldn't duplicate it.
View 1 Replies
View Related
Nov 22, 2011
I have 3 smaller thumbnail images and when I click on any of them, the resulting image displays in the larger image space.
The tricky part is that I want the larger image to become a link that changes, depending on which image is displaying. (I don't want the little images to be links.)
Click here [url] for a visual to explain what I am wanting to do.
Here is what I have for script...but I can't figure out the links...This script works fine, but I can't figure out how to make the larger image have 3 separate links, depending on which image is displaying in it.
View 1 Replies
View Related
Sep 24, 2009
Is it possible to swap the link image that is hovered with another image and at the same time swap different images on another place on the page? I was trying to do it in CSS but I couldn't figure out how to do both at the same time. Basically I want to go from:
after hovering over linkimg1. I can get it to do both separately but not at the same time unless I am missing the combining factor or something. Let me know if you need anything else (i.e. site, missing code) Here's the code I'm working with:
HTML Code:
[Code]...
View 1 Replies
View Related
Nov 7, 2010
I was trying to apply 2 javascript effects on one image. First, I use this Jquery effect on the image. It works like it should until I put in the light box effect (this is the one I am using. The lightbox also works, it just depends on which order I put them in the code on which one will come through.I am relatively new to javascript and I am learning as I go along. Below I inserted part of my code geared towards these two effects. I know I have everything else in the code correct (the body) because they work individually, just not put together (or maybe I have to put a line of code in the body to enable it to work?).Essentially, I want the image to be dulled out when the visitor opens the page, get brighter when they roll over it, then trigger the lightbox when they click on it.The easy option would be to use an image swap for the dull/bright mouseOver effect; however, I like the way it is done by tutorialhero.CODE
<script type="text/javascript" src="javascript/lightbox/prototype.js"></script>
<script type="text/javascript" src="javascript/lightbox/scriptaculous.js?load=effects,builder"></script>
[code].....
View 1 Replies
View Related
Sep 3, 2011
I am working on a project. I have to put up a tab panel of four option. And in each tab i have to put an image slider. I have used many plugins for this. Tried different plugin for different tab. Few times have problem with tab panel and few time compatibility with all browsers have been issue.
View 1 Replies
View Related
May 6, 2011
I'm newbie on jquery and I hope to help me. i'vea problem to showmultiple stack image. For example, I've a jpeg image map on background and I would like to show multiple pin with multiple coordinates.
View 1 Replies
View Related
May 18, 2009
Newbie here. I am seeking to swap out three images when rolling over one. Cursor hovers over one image - three new images, in different locations, are seen on screen. When cursor moves away - the images revert to "normal" state.
Image 1 - thumbnail - bottom right of screen
When rolling over Image 1, three images change:
Image 1 - to shaded version of the thumbnail
Image 2 - main image center of screen
Image 3 - text box image top right of screen
View 2 Replies
View Related
Jul 14, 2010
Im a complete newbie to javascript and I've basically copied and pasted the javascript I found here to use on my site. Its an onMouseOver slideshow: [URL] to use on my site. Basically, my problem is how do I add a second, separate image in a different location on the web page, associated with this script? If I post <a href="javascript:warp()"><img src="myimage" name="targetimage" border=0></a> in two different locations, which is the script for the image, the script stops working, but having it once makes it work. So how do I add two different image locations? Can someone please help me here? I just want to add more images in a different location. ie have image location 1, and image location 2.
[Code]...
View 6 Replies
View Related
Sep 27, 2010
I need a script that will allow a user to select a vertical selection and Horizontal selection that displays a corresponding image. There are only 8 combinations (4 vertical choices and 2 horizontal choices) I just need to display the correct image and a description. There has to be only one of each selected and only display one image.[URl]..
View 4 Replies
View Related
May 9, 2011
I'm trying to create two array's on this page: [URL]
Both array's would be activated by clicking their respective links -- the "I've got more to say" graphic would activate the text array in the bubble.
The "Meet my friends" graphic would activate the image array that changes the picture of the celebrities (ignore the terrible formatting of the 2nd pic).
I'm going to have a relatively large amount of text array variables and probably 5-10 image array variables.
Currently, the meet my friends button changes one image, but then it won't change back and is basically broken. The text array is currently activated by refreshing the page and I can't get that button to work at all.
View 1 Replies
View Related