Fixed options property reactivity.
# 5.1.8Fixed touch issue not working in Iphone Safari and RaspBerry Pi touch screen.
Reduced autohideTime
to 1500 by default.
Thumbs are now "mediaqueried" so their size will depend on screen size.
Fixed blocks2 transition when reverse direction.
Improved UX by changing mouseover
to mousemove
and adding the same behavior on tap with a timer.
Added autohideTime
option, check VueFlux component for more info.
Fixed full screen option
# 5.1.5Fixed error displayed in console when destroying the component.
# 5.1.4Now when an image could not be loaded the slider will omit it displaying a console warning.
# 5.1.3Updated height calculation when set to auto.
More info can be found in VueFlux under Size section.
Added an option to enable gestures (disabled by default).
Icons are now resized depending on the screen.
As I was not convinced about the async solution I reworked the flux components a bit so now they don't need to receive the slider as reference if they are inside the vue-flux component and they will run perfectly.
If the components are placed out of vue-flux the slider will have to be referenced and add v-if
condition that turns true when the component containing the slider is mounted. This way the slider will be passed as ref properly.
Due to an issue found about slider reference not being properly taken from flux components, the declaration of FluxCaption, FluxControls, FluxIndex and FluxPagination must be included async. You just have to do it this way:
import { VueFlux, Transitions, FluxCaption, FluxControls, FluxIndex, FluxPagination } from 'vue-flux';
...
components: {
VueFlux,
FluxCaption: () => import('vue-flux').then(() => FluxCaption),
FluxControls: () => import('vue-flux').then(() => FluxControls),
FluxIndex: () => import('vue-flux').then(() => FluxIndex),
FluxPagination: () => import('vue-flux').then(() => FluxPagination)
},
# 5.0.0
Because of the reactivity I had to do several changes due to virtual dom behaviour. Please test it well before updating to this version in production.
New features:
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4