Main Content

Using WC Slideplayer

WC Slide Player Options

WC Slide Player has several options out of the box.  You can customize:

More options may become available as template requests are made and advanced users of CSS may find other ways to customize this player beyond these options.

return to top

Color Schemes

The default style of the slide player is grey, but it can also be black:

Absorption

In general, low frequencies are better because they can pass through solid objects more easily. Sometimes, higher frequencies can create an advantage because they can be reused more easily. For example, cell phones use fairly high frequencies. By operating at low power, the signal from a cell tower will only travel a short distance. Another cell tower a few miles away can use the same frequency without causing interference. This allows the telephone companies to handle more connections simultaneously.

FM Radio

FM radio stations use relatively low frequencies (88-108 MHz), which is why you can still tune in the signal from a radio station inside your home without needing to put the radio antenna outside and there are fewer disruptions due to weather.

Cell Phones

Cell phones use higher frequencies than broadcast radio and television.  Most cell phones in the United States operate at 850 MHz or 1900 MHz--still low enough to get good reception inside most buildings.  This is why you can usually get cell phone reception anywhere in a house.

Wi-Fi

Wi-Fi signals use much higher frequencies than broadcasting or cell phones. Most Wi-Fi routers operate at 2.4 GHz. This is why the Wi-Fi signal in your home tends to fade quickly.

Satellite

The frequencies used for satellite television (DirecTV, DISH Network) are so high (12 GHz and higher) the signal cannot pass through walls or a roof. This is why satellite dishes must be placed on the outside of a house---and even rain clouds can cause signal interference.


<!-- navigation buttons -->
<div class="navbuttons slidesB black">
<div class="navbutton firstslide">|&lt;∓lt;</div>
<div class="navbutton prevslide">&lt;</div>
<div class="navbutton lastslide">&gt;&gt;|</div>
<div class="navbutton nextslide">></div>
</div>
<!-- end navigation buttons -->

<!-- slide collection -->
<div id="slidesB" class="wcslideplayer black">
<!-- a slide -->
<div class="slide" id="slideB01">
[INSERT SLIDE #1 HTML HERE]
</div>
<!-- end slide -->
<div class="slide" id="slideB02">
[INSERT SLIDE #2 HTML HERE]
</div>
<!-- end slide -->
</div><!-- end slide collection -->
return to top

Navigation Button Placement

The navigation can be placed above or below the slideplayer, based on where you place the navbuttons div in relation to the slide collection div.

Navigation Below the Player

Absorption

In general, low frequencies are better because they can pass through solid objects more easily. Sometimes, higher frequencies can create an advantage because they can be reused more easily. For example, cell phones use fairly high frequencies. By operating at low power, the signal from a cell tower will only travel a short distance. Another cell tower a few miles away can use the same frequency without causing interference. This allows the telephone companies to handle more connections simultaneously.

FM Radio

FM radio stations use relatively low frequencies (88-108 MHz), which is why you can still tune in the signal from a radio station inside your home without needing to put the radio antenna outside and there are fewer disruptions due to weather.

Cell Phones

Cell phones use higher frequencies than broadcast radio and television.  Most cell phones in the United States operate at 850 MHz or 1900 MHz--still low enough to get good reception inside most buildings.  This is why you can usually get cell phone reception anywhere in a house.

Wi-Fi

Wi-Fi signals use much higher frequencies than broadcasting or cell phones. Most Wi-Fi routers operate at 2.4 GHz. This is why the Wi-Fi signal in your home tends to fade quickly.

Satellite

The frequencies used for satellite television (DirecTV, DISH Network) are so high (12 GHz and higher) the signal cannot pass through walls or a roof. This is why satellite dishes must be placed on the outside of a house---and even rain clouds can cause signal interference.


<!-- slide collection -->
<div id="slidesD" class="wcslideplayer">
<!-- a slide -->
<div class="slide" id="slideD01">
[INSERT SLIDE #1 HTML HERE]
</div>
<!-- end slide -->
<div class="slide" id="slideD02">
[INSERT SLIDE #2 HTML HERE]
</div>
<!-- end slide -->
</div><!-- end slide collection -->

<!-- navigation buttons -->
<div class="navbuttons slidesD">
<div class="navbutton firstslide">|&lt;∓lt;</div>
<div class="navbutton prevslide">&lt;</div>
<div class="navbutton lastslide">&gt;&gt;|</div>
<div class="navbutton nextslide">></div>
</div>
<!-- end navigation buttons -->
return to top

Play All and Pause Buttons

The Slideplayer can be use with or without Play All and Pause buttons. Just add the following two buttons between the prevslide and lastslide button divs:

<div class="navbutton playall">Play All</div>
<div class="navbutton pause">Pause</div>

Here are some concepts that came to my mind as a beginning student of psychology. Your ideas may be different.

Click the navigation buttons below to see the responses...

Freud
Mental Health
Psychanalysis
Therapy
Counselor
Inkblot Test
Psychiatry
Couch
"How does that make you feel?"

<!-- slide collection -->
<div id="slidesE" class="wcslideplayer black">
<!-- a slide -->
<div class="slide" id="slideE01">
[INSERT SLIDE #1 HTML HERE]
</div>
<!-- end slide -->
<div class="slide" id="slideE02">
[INSERT SLIDE #2 HTML HERE]
</div>
<!-- end slide -->
</div><!-- end slide collection -->

<!-- navigation buttons -->
<div class="slidesE navbuttons black">
<div class="navbutton firstslide">|&lt;∓lt;</div>
<div class="navbutton prevslide">&lt;</div>
<div class="navbutton playall">Play All</div>
<div class="navbutton pause">Pause</div>

<div class="navbutton lastslide">&gt;&gt;|</div>
<div class="navbutton nextslide">></div>
</div>
<!-- end navigation buttons -->
return to top

Top of page