-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Carousel extension is not working #83
Comments
I think the carousel has been abandoned: https://www.npmjs.com/package/bulma-carousel/v/4.0.24#user-content-exclamationexclamationexclamation-looking-for-new-maintainer-exclamationexclamationexclamation |
Hmm.. Thanks @tehfink, that seems like a likely culprit for the problem that @jeavanderwiel is having. I will deprecate support for this plugin in the next version of |
Hi Guys, Thx for coming back to this. Is there another way to show carousels in my project? Please let me know! Kind regards, Joshua |
If you need a carousel, you could try something like glide.js, perhaps? It's available as a CDN (so you don't need npm to install it), and should be very easy to get working. Quite minimalist, too. There is also a school of thought that says that you should not be using carousels at all, as they are considered to be poor UX. Perhaps this problem could be better solved without one? |
Hi,
I would like to use the carousel extension, but somehow I'm not able to load the carousel properly. I'm getting the images below each other. The following I have setup.
base.html
{% load static %}
{% load django_simple_bulma %} {% bulma theme %} {% font_awesome %} <title>{% block title %}{% endblock %}Pocketminerals</title> <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> <script src="{% static 'js/scripts.js' %}"></script>=======================
scripts.js
bulmaCarousel.attach('#carousel-demo', {
slidesToScroll: 1,
slidesToShow: 3
});
=======================
settings.py
(.....)
Custom settings for django-simple-bulma
BULMA_SETTINGS = {
"extensions": [
"all"
],
"variables": {
"primary": "#000000",
"size-1": "6rem",
},
"alt_variables": {
"primary": "#fff",
"scheme-main": "#000",
},
"output_style": "compressed",
"fontawesome_token": "e761a01be3",
}
=======================
I hope someone can help me.
Thank you!
Kind regards,
Joshua
The text was updated successfully, but these errors were encountered: