My webpage includes a jquery slideshow using the jquery circle plugin, featuring the "shuffle" option.
var slideshow = $('#slider').cycle({
fx: 'shuffle', shuffle: { top: 0, left: 1300},
....
When the images move out of the page during transitions, it triggers the horizontal scroll bar to briefly appear, which is quite annoying. Would it be a good solution to simply hide the horizontal scroll bar with CSS?
html{
overflow-x: hidden;
}
Are there any potential drawbacks to this approach?