clickable company labels

js reformat
ci rename
This commit is contained in:
lukas 2020-04-26 21:05:00 +02:00
parent 3bbffeb378
commit 8bc9bdfc20
4 changed files with 13 additions and 8 deletions

View File

@ -1,5 +1,4 @@
test:
check_html:
image: 18fgsa/html-proofer:gitlab-ci
script:
- ls -la
- htmlproofer ./ --empty-alt-ignore

View File

@ -86,6 +86,10 @@
color: #74f9d4;
}
.companyname:hover{
color: #74f9d0;
}
.experienceworktext {
margin-top: 5mm;
font-size: large;

View File

@ -142,7 +142,7 @@
<div class="content">
<div id="content1">
<div class="experiencetitle">
Software engineer <span class="companyname">@Profactor</span>
Software engineer <a href="https://www.profactor.at/en/" class="companyname">@Profactor</a>
</div>
<div>
extramural research institute
@ -160,7 +160,7 @@
<div id="content2">
<div class="experiencetitle">
Electrician <span class="companyname">@SPS Technik</span>
Electrician <a href="https://www.sps.at/en/" class="companyname">@SPS Technik</a>
</div>
<div>
automation technology
@ -175,7 +175,8 @@
<div id="content3">
<div class="experiencetitle">
Software and electronics engineer <span class="companyname">@Profactor</span>
Software and electronics engineer
<a href="https://www.profactor.at/en/" class="companyname">@Profactor</a>
</div>
<div>
extramural research institute
@ -190,7 +191,7 @@
<div id="content4">
<div class="experiencetitle">
plumber & maintenance worker <span class="companyname">@Klausriegler</span>
plumber & maintenance worker <a href="https://www.klausriegler.at/" class="companyname">@Klausriegler</a>
</div>
<div>
Heating-Ventilation-Climate-Sanitary

View File

@ -18,9 +18,10 @@ $(function () {
$("#section3").inViewport(function (px) {
if (px) {
$("#experienceheader").addClass("animationappear600ms");
$("#experiencecontentcontainer").addClass("animationappear300ms");
$("#experiencecontentcontainer").addClass("experiencecontaineranimation");
const expcontainer = $("#experiencecontentcontainer");
expcontainer.addClass("animationappear300ms");
expcontainer.addClass("experiencecontaineranimation");
}
});