pixelcog / parallax.js

Simple parallax scrolling effect inspired by Spotify.com implemented as a jQuery plugin
MIT License
3.53k stars 840 forks source link

Add alt attribute? #293

Open DEQWeb opened 4 years ago

DEQWeb commented 4 years ago

It would be nice if I could give it an alt attribute to pass accessibility testing.

mdmpweb commented 3 years ago

Hola. Necesito poner por temas de accesibilidad el alt a la img ¿Lo has podido solucionar?

marklloyd commented 3 years ago

You can easily add a static alt attribute to the parallax image.

Search the js file for this.$slider.addClass("parallax-slider").one(

An add the jquery to add an alt attribute. eg: this.$slider.addClass("parallax-slider").attr('alt', 'parallax image').one(

The above example adds an alt attribute of "parallax image".

angelayanpan commented 3 years ago

@DEQWeb agreed. would be nice to add it without editing the js file