saguaros
I mean can we "no popup" but only have css selector effect likes
a:link - a normal, unvisited link
a:visited - a link the user has visited
a:hover - a link when the user mouses over it
a:active - a link the moment it is clicked
Therefore, once an user "hover: one of the marker, the marker will be bigger,
once the user click the marker, the marker will also turn to bigger than other or even change to another image, which show different from other marker on the map.
For example :
#marker {
background-image: url('image1.jpg');
width: 30px;
height:30px;
}
#marker:hover{
background: url("image2.jpg");
width: 36px;
height:36px;
}
#marker:active{
background: url("image3.jpg");
width: 40px;
height:40px;
}
Of course : in responsive design when the screen width is between lower than 360px , which is MOBILE view
there should not have any hover effect if the user view the image hotspot in a mobile,
however, the a:link still can be effective to allow user can see the selected marker is under css (#marker:active)
I understand , if no popup window, the "Link" text link should not be shown, and this is also what I wish to have the reasult.
Thanks indeed
Fion