Difference between revisions of "Modify Site Background Image or Colour"

From UnionCloud Support
Jump to: navigation, search
Line 2: Line 2:
  
 
To change the speed of the scroll simply change the 'auto:X,' line and replace the X with the number of seconds you want to delay the scroll, the example below uses 2 seconds.
 
To change the speed of the scroll simply change the 'auto:X,' line and replace the X with the number of seconds you want to delay the scroll, the example below uses 2 seconds.
 
<code>
 
  <nowiki>
 
 
$('.auto-stripe ul').jcarousel({
 
scroll:1,
 
wrap: 'last',
 
auto:2,
 
itemFallbackDimension: 300
 
});
 
    </nowiki>
 
</code>
 
  
 
<syntaxhighlight lang="javascript" line='line'>
 
<syntaxhighlight lang="javascript" line='line'>
Line 22: Line 10:
 
itemFallbackDimension: 300
 
itemFallbackDimension: 300
 
});
 
});
</syntaxhighlight>
 
 
 
<syntaxhighlight lang="python" line='line'>
 
def quickSort(arr):
 
less = []
 
pivotList = []
 
more = []
 
if len(arr) <= 1:
 
return arr
 
else:
 
pass
 
 
</syntaxhighlight>
 
</syntaxhighlight>

Revision as of 14:51, 29 March 2017

If you want to change the UnionCloud Background Image, or Background Colour, and you have access to Global CSS you can do either of these things using the following lines of code]]

To change the speed of the scroll simply change the 'auto:X,' line and replace the X with the number of seconds you want to delay the scroll, the example below uses 2 seconds.

1 	$('.auto-stripe ul').jcarousel({
2 		scroll:1,
3 		wrap: 'last',
4 		auto:2,
5 		itemFallbackDimension: 300
6 	});