incampativilidad jquery
Publicado por diego alejandro (1 intervención) el 22/01/2017 22:52:07
tengo esta funcion de un slider la cual me crea conflito
la comodo asi pero igual mente no me muestra el slider o el conflito pero creo q esta mal la conversion agradeceria alguna ayuda
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<script>
$(document).ready(function() {
var slider = new bootslider('#bootslider', {
animationIn: "fadeInUp",
animationOut: "flipOutX",
timeout: 25000,
autoplay: true,
preload: true,
pauseOnHover: false,
thumbnails: false,
pagination: false,
mousewheel: false,
keyboard: true,
touchscreen: true,
layout: 'fixedheight-center',
canvas: {
width: 1440,
height: 720
}
});
slider.init();
});
</script>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<script>
jQuery.noConflict();
e(document).ready(function() {
var slider = new bootslider('#bootslider', {
var e = jQuery.noConflict();
animationIn: "fadeInUp",
animationOut: "flipOutX",
timeout: 25000,
autoplay: true,
preload: true,
pauseOnHover: false,
thumbnails: false,
pagination: false,
mousewheel: false,
keyboard: true,
touchscreen: true,
layout: 'fixedheight-center',
canvas: {
width: 1440,
height: 720
}
});
slider.init();
});
</script>
Valora esta pregunta
0