Lines Matching full:card
6 * @fileoverview Card slider implementation. Allows you to create interactions
10 * - The frame defines the boundary of one item. Each card will be expanded to
15 * - The cards are the individual viewable items. There should be one card for
16 * each item in the list. Only one card will be visible at a time. Two cards
36 * @param {number} currentCard The index of the card that is currently
38 * @param {number} cardWidth The width of each card should have.
84 // Fired when the user slides to another card.
128 for (var i = 0, card; card = this.cards_[i]; i++) {
129 assert(view.getComputedStyle(card).position == 'static',
164 // Must upate the transform on the container to show the correct card.
170 * Sets the cards used. Can be called more than once to switch card sets.
172 * @param {number} index Index of the card to in the new set of cards to
182 // Jump to the given card index.
187 * Updates the width of each card.
191 for (var i = 0, card; card = this.cards_[i]; i++)
192 card.style.width = this.cardWidth_ + 'px';
196 * Returns the index of the current card.
197 * @return {number} index of the current card.
273 // If dragging beyond the first or last card then apply a backoff so the
296 * On drag end events we may want to transition to another card, depending
311 // (negative) then the user wishes to go right (card +1).
325 // Ensure we're at a card bounary
330 * Selects a new card, ensuring that it is a valid index, transforming the
331 * view and possibly calling the change card callback.
332 * @param {number} newCardIndex Index of card to show.
341 // If we have a new card index and it is valid then update the left
342 // position and current card index.
357 * Centers the view on the card denoted by this.currentCard. Can either
358 * animate to that card or snap to it.
366 // Animate to the current card, which will either transition if the
367 // current card is new, or reset the existing card if we didn't drag