Skip to content

Commit

Permalink
add: text typing animation on home page
Browse files Browse the repository at this point in the history
  • Loading branch information
funaki-roger committed Sep 12, 2024
1 parent ee38ad5 commit 3908899
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
<div class="row">
<div class="home-info padd-15">
<h3 class="hello">Hello, My name is <span class="name">Roger Funaki</span></h3>
<h3 class="my-profession">I'm a <span class="typing">Quality Assurance Analyst</span></h3>
<h3 class="my-profession"><span class="typing">I'm a QA Analyst</span></h3>
<p>
🛠️ HARD SKILLS:<br><br>

Expand Down Expand Up @@ -1155,6 +1155,7 @@ <h4>Theme Colors</h4>
<!--Style Switcher End-->

<!-- JS Files-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/typed.js/2.1.0/typed.umd.js" referrerpolicy="no-referrer"></script>
<script src="js/script.js"></script>
<script src="js/style.switcher.js"></script>
</body>
Expand Down
7 changes: 7 additions & 0 deletions js/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/* typing animation */
var typed = new Typed(".typing", {
strings: ["", "I work with", "WEB | Mobile | API | Scrum Master"],
typeSpeed: 150,
backSpeed: 250,
loop: true
});

0 comments on commit 3908899

Please sign in to comment.