function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Charline MitchenerCharline Mitchener 

Adding a rotating banner to a visualforce page

Hi,

I need to add a rotating banner to a visualforce page to display images for our community. Is this possible and if so how? I am new to this so any help would be appreciated!
Naveen Rahul 3Naveen Rahul 3

Go to
develop ->Static resource

upload js and css with ziped file or seperate files.

you need to add the jquery or javascript files in the apex page like here mentioned in the below url.please refer

https://www.salesforce.com/us/developer/docs/pages/index_Left.htm#CSHID=pages_resources_reference.htm|StartTopic=Content%2Fpages_resources_reference.htm|SkinName=webhelp

then your js script

<script>
   $("#datatabe").somecallfunction();

</script>

and you know how to use 

<apex:repeat >

//your  HTML elemenst and rendering

</apex:repeat>