bee3d
bee3d copied to clipboard
Improved Responsive Sliders
Better default support for responsive Bee3D sliders. Currently doable, but is up to user to modify CSS @ desired breakpoints.
there is issue with the mobile view. Especially with the coverflow option. There should be ways to disable slider on different breakpoints like slick slider
also, there is no way to manage the width or placement of the slides on a fluid breakpoint.
Please comment.
Hey, traveling today. I'll take a look at all your comments later today, circa 8 hours. Thanks ~
@icdindia There is a way to manage the widths & placements on responsive breakpoints. As you can imagine, I can't impose a default responsive system, because everyone's desired implementation is immensely different.
You have to apply your own responsive media queries.
For example, the demo on my site uses this code:
@media only screen and (max-width: 768px) {
.bee3D--parent {
zoom: 0.6;
}
}
I chose to use zoom, but i easily could have done transform: scale(0.6) instead (and I probably should have because zoom is no supported in Firefox.
For other responsive options, check out #28