JQuery Interface Fisheye Left Aligned Interface

Using the groovy Fisheye function from the jQuery plugin interface and setting “halign” to “left”, the effect seems to apply to the next image in the list, and not to the fact that the mouse actually ended.

link

+3
source share
1 answer

Remove margin-left: -50px;from style rules for a.dock-item2at 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 */
}
0
source

Source: https://habr.com/ru/post/1756374/


All Articles