Skip to Main Content

Admin

Panel code

HTML and CSS Code for Creating Collapsing Panels

Used on Library Technology Troubleshooting Guide  under the Printing Tab

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #ccc;
}

.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
</style>
</head>
<body>

<h2>Heading</h2>

<button class="accordion">Students</button>
<div class="panel">
  <p>Text</p>
</div>

<button class="accordion">Heading</button>
<div class="panel">
  <p><></p>
</div>

<script>
var acc = document.getElementsByClassName("accordion");
var i;

for (i = 0; i < acc.length; i++) {
  acc[i].addEventListener("click", function() {
    this.classList.toggle("active");
    var panel = this.nextElementSibling;
    if (panel.style.maxHeight) {
      panel.style.maxHeight = null;
    } else {
      panel.style.maxHeight = panel.scrollHeight + "px";
    } 
  });
}
</script>

</body>
</html>

panel box

Printing Guidelines & Procedures

A current StormCard (TCC ID) is required. If you do not have your TCC ID or are not enrolled in the current semester, follow the instructions for Community Patrons. Students must be enrolled in the current semester (Summer, Spring, Fall) to use their StormCard.

  • StormCards are loaded each semester with 100 pages, and that amount does not "roll over" to the next semester.
  • After 100 pages, students must pay 5 cents a page to print. Funds can be added three ways:
    • At StormPort machines in the library, a minimum of $1 can be applied using cash.
    • In the Business Office, a minimum of $25 can be applied using a credit card.
    • On the StormCard Manager website, a minimum of $25 can be applied using a credit card.
    Students can check the balance of their card . . .
    • At self-service stations available in the library.
    • By registering on the StormCard Manager website www.tcc.edu/StormCard.
  • Don't hesitate to ask a library staff member to assist you with loading money on to your StormCard or checking your current balance.

  • A Total Convenience Card is required and can be purchased for $1.00 at the StormPort machine in the library. At least $1.00 must be added to the card to pay for prints, which are $.05 per page.
  • Community Patrons can check their balance by inserting their Convenience Card into the StormPort machine or at the balance check station kiosk.
  • Please don't hesitate to ask a library staff member to assist you with loading money on to your Convenience Card or checking your current balance.

  • Click Print on the computer to access the Print Assistant Dialog Box.
  • Enter the six-digit code on the back of your Total Convenience Card as the Release Key.
  • At the Print Release Station, touch screen next to the printer, enter your Release Key in the Start Session Dialog Box.
  • Review your print requests on the Release Station. Select each job you want to print, or click Select All to print all of them.
  • Swipe your Total Convenience Card through the reader.
  • If you do not have enough funds on your card, more money can be deposited using a StormPort (cash-to-card machine) Printing FAQs.

Content created by TCC Libraries is licensed as CC BY 4.0

Last Updated: Aug 26, 2024 11:35 AM