Is it correct that all images being rotated need to be the same size?
Im trying to rotate a set of banners that are almost the same size but not exactly. the effect i get is
*some images get chopped of and the worst is that the chopped of part is shown in the beginning of the next image!
*some images get chopped of and the worst is that the chopped of part is shown in the beginning of the next image!
*there is a delay between images when nothing is shown.
Here is my code:
CSS: |
.banner |
{ |
border:blue 1px solid; |
overflow: hidden; |
height: 320px; |
width: 920px; |
margin: 9px 9px 9px 11px; |
} |
aspx: |
<telerik:RadRotator ID="radrotBanners" Width="923" Height="325" runat="server" CssClass="banner" |
SlideShowAnimation-Type="CrossFade" |
SlideShowAnimation-Duration="100" |
FrameDuration="5000" |
InitialItemIndex="1" |
PauseOnMouseOver="false" |
RotatorType="SlideShow" |
ItemHeight="320" |
ItemWidth="920" |
> |
<ItemTemplate> |
<asp:Image ID="imgBanner" CssClass="banner" ImageUrl='<%# Eval("url") %>' runat="server" /> |
</ItemTemplate> |
</telerik:RadRotator> |