Skip to content

Commit

Permalink
dev: notepad
Browse files Browse the repository at this point in the history
  • Loading branch information
Piyush-linux committed Jun 3, 2024
1 parent f96def6 commit 5dd48b7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ onMounted(() => {
}]
});
// tour.start();
tour.start();
});
</script>

Expand All @@ -232,7 +232,7 @@ onMounted(() => {
background-repeat: no-repeat;
background-size: cover;
background-position: center;
background-image: url("/bg.jpg");
background-image: url("/astraos/bg.jpg");
}
/*.shepherd-arrow {
Expand Down
3 changes: 2 additions & 1 deletion components/Matrix.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<!-- / -->
<template>
<div class="matrix w-full h-full bg-gray-900 p-3 opacity-[.8] rounded-2xl">
<div class="w-full h-full rounded-2xl border-2 border-gray-400" style="background-image: url('/matrix1.gif');background-position: center;background-repeat: no-repeat;background-size: cover;">
<div class="w-full h-full rounded-2xl border-2 border-gray-400" style="background-image: url('/astraos/matrix1.gif');background-position: center;background-repeat: no-repeat;background-size: cover;">
</div>
</div>
</template>
Expand Down
3 changes: 2 additions & 1 deletion components/Music.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
progress.value.value = song.value.currentTime
}
if(song.value.play()){
if(songState.value){
song.value.play()
setInterval(()=>{
progress.value.value = song.value.currentTime ;
},500);
Expand Down

0 comments on commit 5dd48b7

Please sign in to comment.