jQuery Interface Fisheye left align issue
Using the groovy Fisheye function from the jQuery plugin Interface, and setting "halign" to "left" the effect seem开发者_运维技巧s to apply to the next image in the list rather than the one that the mouse is actually over.
link
Remove margin-left: -50px;
from the style rules for a.dock-item2
in style.css
.
a.dock-item2 {
display: block;
font: bold 12px Arial, Helvetica, sans-serif;
color: #000;
bottom: 0px;
position: absolute;
text-align: left;
text-decoration: none;
margin-left: -50px; /* remove this line */
}
精彩评论