Manu-41 Posted November 20, 2023 Share Posted November 20, 2023 (edited) Bonjour, ayant reçu 2 avis sur un produit avec une note de 4.5, j'ai un souci avec les étoiles Voir pièce jointe. Or, cela affiche soit 4 étoiles ou 5 étoiles. Le problème est aussi présent sur la liste des produits. J'ai cherché, mais je ne trouve pas comment régler le problème. Pouvez-vous m'aider ? Le site Ps 1.7 Edited November 20, 2023 by Manu-41 e (see edit history) Link to comment Share on other sites More sharing options...
Manu-41 Posted November 21, 2023 Author Share Posted November 21, 2023 j'avance, il semble avoir un problème avec le js du code ci-dessous Un expert peut-il confirmer ? } else { //This the partial star composed of // - one invisible partial empty star // - one visible partial empty star (remaining part) // - one visible partial full star var fullWidth = (grade - i + 1) * componentOptions.starWidth; var emptyWidth = componentOptions.starWidth - fullWidth; newStar = emptyStar.clone(); newStar.css('visibility', 'hidden'); newStar.css('width', fullWidth); newStar.attr('id', 'empty-star-'+i) $('#empty-star-'+i).remove(); emptyStars.append(newStar); newStar = emptyStar.clone(); newStar.css('width', emptyWidth); newStar.css('background-position', '0px -'+fullWidth+'px'); newStar.css('background-position', '-'+fullWidth+'px 0px'); newStar.css('marginLeft', 0); emptyStars.append(newStar); fullStar.css('width', fullWidth); fullStar.attr('id', 'star-'+i) $('#star-'+i).remove(); fullStars.append(fullStar.clone()); } Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now