pics added
This commit is contained in:
BIN
images/review-site.png
Normal file
BIN
images/review-site.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 394 KiB |
BIN
images/trek.png
Normal file
BIN
images/trek.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.2 MiB |
12
index.html
12
index.html
@@ -21,7 +21,9 @@
|
|||||||
<ul>
|
<ul>
|
||||||
<li><a href="#bio" target="_self">ABOUT</a></li>
|
<li><a href="#bio" target="_self">ABOUT</a></li>
|
||||||
<li><a href="#contact" target="_self">CONTACT</a></li>
|
<li><a href="#contact" target="_self">CONTACT</a></li>
|
||||||
<li><a href="#projects" target="_self">PROJECTS</a></li>
|
<li>
|
||||||
|
<a href="#project-wrapper" target="_self">PROJECTS</a>
|
||||||
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
<header>
|
<header>
|
||||||
@@ -197,7 +199,7 @@
|
|||||||
<div id="project-container">
|
<div id="project-container">
|
||||||
<div class="container-right">
|
<div class="container-right">
|
||||||
<img
|
<img
|
||||||
src="/images/amok.png"
|
src="/images/trek.png"
|
||||||
alt="virtual-pet-amok-console"
|
alt="virtual-pet-amok-console"
|
||||||
/>
|
/>
|
||||||
<div class="project-desc">
|
<div class="project-desc">
|
||||||
@@ -236,10 +238,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div id="project-container">
|
<div id="project-container">
|
||||||
<div class="container-right">
|
<div class="container-right">
|
||||||
<img
|
<img src="/images/review-site.png" alt="">
|
||||||
src="/images/amok.png"
|
|
||||||
alt="virtual-pet-amok-console"
|
|
||||||
/>
|
|
||||||
<div class="project-desc">
|
<div class="project-desc">
|
||||||
<p>
|
<p>
|
||||||
Designed a movie reviews website
|
Designed a movie reviews website
|
||||||
@@ -411,5 +410,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
|
<script src="index.js" type="text/java"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
23
index.js
Normal file
23
index.js
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
console.log('hello nurse');
|
||||||
|
|
||||||
|
var slideIndex = 1;
|
||||||
|
showDivs(slideIndex);
|
||||||
|
|
||||||
|
function plusDivs(n) {
|
||||||
|
showDivs((slideIndex += n));
|
||||||
|
}
|
||||||
|
|
||||||
|
function showDivs(n) {
|
||||||
|
var i;
|
||||||
|
var x = document.getElementsByClassName('mySlides');
|
||||||
|
if (n > x.length) {
|
||||||
|
slideIndex = 1;
|
||||||
|
}
|
||||||
|
if (n < 1) {
|
||||||
|
slideIndex = x.length;
|
||||||
|
}
|
||||||
|
for (i = 0; i < x.length; i++) {
|
||||||
|
x[i].style.display = 'none';
|
||||||
|
}
|
||||||
|
x[slideIndex - 1].style.display = 'block';
|
||||||
|
}
|
||||||
@@ -215,7 +215,8 @@ h4 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.project-item img {
|
.project-item img {
|
||||||
width: 90%;
|
max-width: 375px;
|
||||||
|
/* width: 90%; */
|
||||||
box-shadow: 10px 10px 11px 0px rgba(0, 0, 0, 0.75);
|
box-shadow: 10px 10px 11px 0px rgba(0, 0, 0, 0.75);
|
||||||
-webkit-box-shadow: 10px 10px 11px 0px rgba(0, 0, 0, 0.75);
|
-webkit-box-shadow: 10px 10px 11px 0px rgba(0, 0, 0, 0.75);
|
||||||
-moz-box-shadow: 10px 10px 11px 0px rgba(0, 0, 0, 0.75);
|
-moz-box-shadow: 10px 10px 11px 0px rgba(0, 0, 0, 0.75);
|
||||||
|
|||||||
Reference in New Issue
Block a user