forked from AlbertSuarez/interactive-short
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8a443c6
commit 4c9bca0
Showing
8 changed files
with
74 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<app-header></app-header> | ||
|
||
<div class="container"> | ||
<p>Queremos conocer tu opinión de <i>Mia: Un cortometraje interactivo</i>. Cuéntanos tu experiencia interactiva para que podamos publicarla en nuestras redes sociales. Tenemos cuenta en <a *ngIf="instagramUser" href="https://instagram.com/{{instagramUser}}" target="_blank">Instagram.</a></p> | ||
<p>Para más información, no dudes en contactarnos en nuestra dirección de <a *ngIf="emailAddress" href="mailto:{{emailAddress}}">correo electrónico</a>. Allí resolveremos cualquier duda que tengas sobre el cotrometraje o el proyecto interactivo en sí mismo. Y recuerda, tu opinión nos importa.</p> | ||
</div> | ||
|
||
<app-footer></app-footer> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
a { | ||
color: #333; | ||
transition: color 0.5s ease-in-out; | ||
} | ||
|
||
a:hover { | ||
color: #000; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; | ||
|
||
import { ContactComponent } from './contact.component'; | ||
|
||
describe('ContactComponent', () => { | ||
let component: ContactComponent; | ||
let fixture: ComponentFixture<ContactComponent>; | ||
|
||
beforeEach(async(() => { | ||
TestBed.configureTestingModule({ | ||
declarations: [ ContactComponent ] | ||
}) | ||
.compileComponents(); | ||
})); | ||
|
||
beforeEach(() => { | ||
fixture = TestBed.createComponent(ContactComponent); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
}); | ||
|
||
it('should create', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import { Component, OnInit, AfterViewInit, OnDestroy } from '@angular/core'; | ||
import * as config from '../config'; | ||
|
||
@Component({ | ||
selector: 'app-contact', | ||
templateUrl: './contact.component.html', | ||
styleUrls: ['./contact.component.scss'] | ||
}) | ||
export class ContactComponent implements OnInit, AfterViewInit, OnDestroy { | ||
|
||
instagramUser = config.instagramUser; | ||
emailAddress = config.emailAddress; | ||
|
||
constructor() { } | ||
|
||
ngOnInit() { | ||
} | ||
|
||
ngAfterViewInit() { | ||
document.querySelector('body').classList.add('white'); | ||
} | ||
|
||
ngOnDestroy(): void { | ||
document.querySelector('body').classList.remove('white'); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters