Skip to content

Commit

Permalink
Solucion de errores de js
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergiioog committed Oct 21, 2023
1 parent 003c8aa commit 99dcce0
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 10 deletions.
1 change: 0 additions & 1 deletion contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css">
<script src="index.js" defer></script>
</head>
<body>
<section id="menu_principal">
Expand Down
1 change: 0 additions & 1 deletion education.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css">
<script src="index.js" defer></script>
</head>
<body>
<section id="menu_principal">
Expand Down
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ <h2>Desarrollador Web</h2>
</div>

<div id="redes_sociales">
<a href="https://github.com/Sergiioog" class="socialicon" id="icono_gith"><i class="bi bi-github" style="color: rgb(248, 236, 236)"></i></a>
<a href="https://www.linkedin.com/in/sergiogarciagordo/" class="socialicon" id="linked"><i class="bi bi-linkedin" style="color: rgb(248, 236, 236)"></i></a>
<a href="https://twitter.com/srgiocodes" class="socialicon" id="twt"><i class="bi bi-twitter" style="color: rgb(248, 236, 236)"></i></a>
<a href="https://github.com/Sergiioog" class="socialicon" id="githubicon"><i class="bi bi-github" style="color: rgb(248, 236, 236)"></i></a>
<a href="https://www.linkedin.com/in/sergiogarciagordo/" class="socialicon" id="linkedinicon"><i class="bi bi-linkedin" style="color: rgb(248, 236, 236)"></i></a>
<a href="https://twitter.com/srgiocodes" class="socialicon" id="twittericon"><i class="bi bi-twitter" style="color: rgb(248, 236, 236)"></i></a>
</div>
</div>
<div id="card_about">
Expand Down
10 changes: 6 additions & 4 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ var icono_persona = document.querySelector('#icono_persona');
var icono_ordenador = document.querySelector('#icono_ordenador');
var icono_libro = document.querySelector('#icono_libro');
var icono_sobre = document.querySelector('#icono_sobre');
var icono_github = document.querySelector('#icono_gith');
var icono_linkedin = document.querySelector('#linked');
var icono_twitter = document.querySelector('#twt');

var icono_github = document.querySelector('#githubicon');
var icono_linkedin = document.querySelector('#linkedinicon');
var icono_twitter = document.querySelector('#twittericon');

var botonCurriculum = document.querySelector('#botonCurriculum');

Expand Down Expand Up @@ -103,12 +104,13 @@ function subirBajarIconos () {
icono_twitter.style.transform = 'translateY(0)';
});





}

document.addEventListener('DOMContentLoaded', function() {
/*Llamada a las funciones*/
subirBajarIconos();
})

Expand Down
1 change: 0 additions & 1 deletion projects.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css">
<script src="index.js" defer></script>

</head>
<body>
Expand Down

0 comments on commit 99dcce0

Please sign in to comment.