Χρήστης:Dafniya/common.js
Εμφάνιση
Μετά την αποθήκευση πρέπει να καθαρίσετε την κρυφή μνήμη (cache) του browser σας για να δείτε τις αλλαγές: Σε Chrome, Firefox, Safari, Internet Explorer και Edge: Κρατήστε πατημένο το ⇧ Shift και κάντε κλικ στο κουμπί Ανανέωση στην μπάρα εργαλείων.
// γενικό hover, το χρώμα ορίζεται από το attribute data-hover-bgc (hover in) και στο hover out επανέρχεται σε ότι ήταν πριν
// hover-bgc-parent parent με data-hover-bgc-child για πολλαπλά εσωτερικά αντικείμενα
$('.hover-bgc').hover( function() {
$(this).attr("data-hover-bgc-original", $(this).css("background-color"));
var parentSpec = $(this).parent('.hover-bgc-parent').attr('data-hover-bgc-child');
var newColor = ((typeof parentSpec !== typeof undefined) && (parentSpec !== false)) ? parentSpec : $(this).attr('data-hover-bgc');
$(this).css({ "background-color" : newColor});
}, function() {
$(this).css({ "background-color" : $(this).attr('data-hover-bgc-original') });
});