Skip to content

Commit

Permalink
Update all images to webp
Browse files Browse the repository at this point in the history
  • Loading branch information
idenc committed Dec 12, 2021
1 parent 5fc6710 commit 1826fe6
Show file tree
Hide file tree
Showing 27 changed files with 12 additions and 11 deletions.
Binary file removed src/assets/img/LISTR.gif
Binary file not shown.
Binary file added src/assets/img/LISTR.webp
Binary file not shown.
Binary file removed src/assets/img/catan_board.png
Binary file not shown.
Binary file added src/assets/img/catan_board.webp
Binary file not shown.
Binary file removed src/assets/img/clouds.png
Binary file not shown.
Binary file added src/assets/img/clouds.webp
Binary file not shown.
Binary file removed src/assets/img/forest.jpg
Binary file not shown.
Binary file added src/assets/img/forest.webp
Binary file not shown.
Binary file removed src/assets/img/logo.png
Binary file not shown.
Binary file added src/assets/img/logo.webp
Binary file not shown.
Binary file removed src/assets/img/me.jpg
Binary file not shown.
Binary file added src/assets/img/me.webp
Binary file not shown.
Binary file removed src/assets/img/minesweeper.png
Binary file not shown.
Binary file added src/assets/img/minesweeper.webp
Binary file not shown.
Binary file removed src/assets/img/snapceit.png
Binary file not shown.
Binary file added src/assets/img/snapceit.webp
Binary file not shown.
Binary file removed src/assets/img/toph.png
Binary file not shown.
Binary file added src/assets/img/toph.webp
Binary file not shown.
Binary file removed src/assets/img/vue.png
Binary file not shown.
Binary file removed src/assets/img/youtube.png
Binary file not shown.
1 change: 1 addition & 0 deletions src/assets/img/youtube.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 5 additions & 5 deletions src/assets/js/projects.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const projects = [
{
title: "TOPH",
img: "toph.png",
img: "toph.webp",
description:
"A wearable navigation aid for the visually impaired. Uses machine learning " +
"algorithms such as object detection, image classification, and face recognition " +
Expand All @@ -12,7 +12,7 @@ const projects = [
},
{
title: "LISTR",
img: "LISTR.gif",
img: "LISTR.webp",
description:
"A concept real estate application developed in WPF as a group " +
"project for a human computer interaction course. Provides a Tinder-style " +
Expand All @@ -23,15 +23,15 @@ const projects = [

{
title: "CatanJS",
img: "catan_board.png",
img: "catan_board.webp",
description:
"An online multiplayer version of the board game Catan using Vue.js for the frontend " +
"and Node.js for the backend.",
project_link: "https://github.com/idenc/CatanJS",
},
{
title: "Snapceit",
img: "snapceit.png",
img: "snapceit.webp",
description:
"An Android app which utilizes Google's MLKit to perform character" +
" recognition on receipts to allow quick and easy bill-splitting between" +
Expand All @@ -40,7 +40,7 @@ const projects = [
},
{
title: "Minesweeper",
img: "minesweeper.png",
img: "minesweeper.webp",
description: "Minesweeper written using JQuery",
project_link: "https://gitlab.com/idenc/minesweeper",
},
Expand Down
2 changes: 1 addition & 1 deletion src/components/Footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<footer id="footer-root">
<Mountain />
<div id="footer-content">
<img src="../assets/img/logo.png" alt="logo" />
<img src="../assets/img/logo.webp" alt="logo" />
<div class="vertical-divider"></div>
<h1>Iden Craven</h1>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/NavBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<img
id="logo"
alt="logo"
src="@/assets/img/logo.png"
src="@/assets/img/logo.webp"
@click="homeClick"
/>
<nav id="links-div">
Expand Down
2 changes: 1 addition & 1 deletion src/components/PortfolioItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
target="_blank"
style="margin-left: 30px"
>
<img src="@/assets/img/youtube.png" alt="video link" />
<img src="@/assets/img/youtube.svg" alt="video link" />
</a>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/ProfilePic.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default {
// Loading
const textureLoader = new THREE.TextureLoader();
const texture = textureLoader.load(
require("@/assets/img/me.jpg"),
require("@/assets/img/me.webp"),
this.profilePicLoaded
);
// Debug
Expand Down
4 changes: 2 additions & 2 deletions src/views/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,13 @@ export default {
top: 0;
height: 110%;
width: 100%;
background: url("~@/assets/img/forest.jpg");
background: url("~@/assets/img/forest.webp");
background-size: cover;
}
.moving-clouds {
z-index: -1;
background: url("~@/assets/img/clouds.png") repeat-x;
background: url("~@/assets/img/clouds.webp") repeat-x;
position: fixed;
bottom: 0;
left: 0;
Expand Down

0 comments on commit 1826fe6

Please sign in to comment.