- Posts: 66
- Thank you received: 0
Using Style 3 with rotating pictures background
-
dreamdest
Inactive member -
Topic Author
- Member
-
Less
More
10 years 5 months ago - 10 years 5 months ago #42663
by dreamdest
Replied by dreamdest on topic Using Style 3 with rotating pictures background
now that only loads the first background foto - it doesn't go through the "slide show".
Last edit: 10 years 5 months ago by dreamdest.
Please Log in to join the conversation.
-
ivan.milic
Support Staff -
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
10 years 5 months ago #42671
by ivan.milic
Replied by ivan.milic on topic Using Style 3 with rotating pictures background
Open:
modules/mod_hot_scroller/js/jscroller-0.4.js
this code:
pause: function(obj,status) {
if (obj && typeof status !== 'undefined') {
for (var i in $jScroller.config.obj) {
if ($jScroller.config.obj.child.attr("id") === obj.attr("id")) {
$jScroller.config.obj.pause = status;
}
}
}
},
replace with:
pause: function(obj,status) {
if (obj && typeof status !== 'undefined') {
for (var i in $jScroller.config.obj) {
try{
if ($jScroller.config.obj.child.attr("id") === obj.attr("id")) {
$jScroller.config.obj.pause = status;
}
}catch (e){}
}
}
},
modules/mod_hot_scroller/js/jscroller-0.4.js
this code:
pause: function(obj,status) {
if (obj && typeof status !== 'undefined') {
for (var i in $jScroller.config.obj) {
if ($jScroller.config.obj.child.attr("id") === obj.attr("id")) {
$jScroller.config.obj.pause = status;
}
}
}
},
replace with:
pause: function(obj,status) {
if (obj && typeof status !== 'undefined') {
for (var i in $jScroller.config.obj) {
try{
if ($jScroller.config.obj.child.attr("id") === obj.attr("id")) {
$jScroller.config.obj.pause = status;
}
}catch (e){}
}
}
},
Please Log in to join the conversation.
-
dreamdest
Inactive member -
Topic Author
- Member
-
Less
More
- Posts: 66
- Thank you received: 0
10 years 5 months ago #42689
by dreamdest
Replied by dreamdest on topic Using Style 3 with rotating pictures background
Please Log in to join the conversation.
-
ivan.milic
Support Staff -
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
10 years 5 months ago #42694
by ivan.milic
Replied by ivan.milic on topic Using Style 3 with rotating pictures background
In animbg.js, replace:
jQuery('#master-wrapper')
with:
jQuery('BODY > .wrapper1')
jQuery('#master-wrapper')
with:
jQuery('BODY > .wrapper1')
Please Log in to join the conversation.
-
dreamdest
Inactive member -
Topic Author
- Member
-
Less
More
- Posts: 66
- Thank you received: 0
10 years 5 months ago #42698
by dreamdest
Replied by dreamdest on topic Using Style 3 with rotating pictures background
That didn't work - it made the actual website flash every few seconds, but kept the background the same

Please Log in to join the conversation.
-
ivan.milic
Support Staff -
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
10 years 5 months ago #42703
by ivan.milic
Replied by ivan.milic on topic Using Style 3 with rotating pictures background
and try:
jQuery('BODY')
jQuery('BODY')
Please Log in to join the conversation.
Time to create page: 0.094 seconds