Quantcast
Channel: OXID Community Forum
Viewing all articles
Browse latest Browse all 6951

oxmorepictures

$
0
0
Hallo Zusammen

Ich versuche die oxmorepictures.js so zu ändern, dass wenn ich mit der maus auf die produkticons auf der detailseite die bilder ohne klick wechseln.

mit .hover geht es leider nicht. hat jemand noch einen anderen tipp?`

PHP Code:

( function( $ ) {

    
oxMorePictures = {

        
options: {
            
iDefaultIndex  : -1
        
},

        
_create: function() {

            var 
self    this,
                
options self.options,
                
el      self.element;

            $(
"li a"el).hover(function() {

                $(
"li a"el).removeClass("selected");
                $(
this).addClass("selected");

                return 
false;
            });
        },

        
_init: function() {
            var 
self    this,
                
options self.options,
                
el      self.element;

            
// checking which item should be selected
            
if (options.iDefaultIndex != -&& $("li a.selected"el).parent().index() != options.iDefaultIndex) {
                $(
"li a:eq("options.iDefaultIndex +")"el).trigger("hover");
            }
        }
    }

    $.
widget"ui.oxMorePictures"oxMorePictures );

} )( 
jQuery ); 

Bin für jede Hilfe dankbar.

Beste Grüsse
avni

Viewing all articles
Browse latest Browse all 6951

Trending Articles