Skip to content

Commit

Permalink
cleaned up images
Browse files Browse the repository at this point in the history
centered swiper
  • Loading branch information
ChristopherLinnett committed May 26, 2022
1 parent 198037e commit 289be62
Show file tree
Hide file tree
Showing 13 changed files with 6 additions and 5 deletions.
Binary file added photoshop/aida instructorimage.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added photoshop/aida1image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added photoshop/aida2image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added photoshop/aida3image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added photoshop/aida4image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added photoshop/course images2.psd
Binary file not shown.
6 changes: 3 additions & 3 deletions src/app/landing/landing.page.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@
</div>
</ion-row>
<swiper #swiper [config]="config">
<ng-template class="ion-margin" swiperSlide *ngFor="let course of availableCourses; index as i">
<!-- <ion-card > -->
<ng-template swiperSlide *ngFor="let course of availableCourses; index as i">
<ion-card >
<!-- <ion-card-title class="ion-text-center">{{course.title}}</ion-card-title> -->
<!-- <ion-card-content class="ion-text-center"> -->
<img src="./assets/img/{{course.title.toLowerCase()}}image.png" alt="" [routerLink]="['/course-landing']" (click)="onSelectCourse(course.title)">
<!-- </ion-card-content> -->
<!-- </ion-card> -->
</ion-card>
</ng-template>
</swiper>
</ion-grid>
Expand Down
5 changes: 3 additions & 2 deletions src/app/landing/landing.page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ import {
} from '@angular/core';
import Swiper, { SwiperOptions } from 'swiper';
import { SwiperComponent } from 'swiper/angular';

import SwiperCore, {EffectCoverflow} from "swiper";
SwiperCore.use([EffectCoverflow])
import { Router } from '@angular/router';
import { ModalController } from '@ionic/angular';
import { Subscription } from 'rxjs';
Expand Down Expand Up @@ -40,7 +41,7 @@ export class LandingPage implements OnInit, AfterContentChecked, OnDestroy {
studentList = []

@ViewChild('swiper') swiper: SwiperComponent
config: SwiperOptions = {slidesPerView: 'auto' , effect: 'cube'}
config: SwiperOptions = {slidesPerView: 'auto' , effect: 'coverflow'}
constructor(
private dataStorageService: DatastorageService,
private modalController: ModalController,
Expand Down
Binary file modified src/assets/img/aida instructorimage.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/img/aida1image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/img/aida2image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/img/aida3image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/img/aida4image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 289be62

Please sign in to comment.