Skip to content

Commit

Permalink
上传一些备选logo,存档
Browse files Browse the repository at this point in the history
  • Loading branch information
madderscientist committed Feb 4, 2024
1 parent 2b3c242 commit f56cc07
Show file tree
Hide file tree
Showing 13 changed files with 12 additions and 3 deletions.
6 changes: 5 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@
<div class="iconfont icon-select"></div>
</button>
</div>

<a href="https://github.com/madderscientist/noteDigger" class="f">
<img src="./style/github-mark-white.png" alt="项目地址" style="width: 34px; height: 34px;">
</a>
</div>
<!-- 下半部分 操作区 -->
<div class="flexfull fr">
Expand All @@ -64,7 +68,7 @@
<div class="flexfull fc" style="position: relative; z-index: 0; border-left: var(--theme-dark) solid 3px;">
<div id="Canvases-Container" class="flexfull">
<div class="f wf" style="height: 40px;">
<button id="play-btn">当前时间<br>总时长</button>
<button id="play-btn" draggable="false">当前时间<br>总时长</button>
<canvas id="timeBar" width="1000px" height="40px"></canvas>
</div>
<div class="f wf">
Expand Down
Binary file added logo/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added logo/logo10.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added logo/logo12.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added logo/logo13.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added logo/logo14.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added logo/logo2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added logo/logo5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added logo/logo6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added logo/logo8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion siderMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class SiderContent extends HTMLDivElement {
_mouseup() {
document.removeEventListener('mousemove', this.resize);
document.removeEventListener('mouseup', this.mouseup);
bar.blur();
this.bar.blur();
window.dispatchEvent(new Event("resize")); // 触发app.resize
}
get display() {
Expand Down Expand Up @@ -98,6 +98,7 @@ class SiderMenu extends HTMLDivElement {
this.appendChild(tab);
if(this.tabs.push(tab) == 1) {
tab.classList.add('selected');
dom.style.display = 'block';
} return this; // 供链式调用
}
_tabClick(e) {
Expand Down
Binary file added style/github-mark-white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 5 additions & 1 deletion todo.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,4 +131,8 @@ filter.connect(audioContext.destination);
```
仍然可以通过audioElement控制整体的播放。需要注意audioContext的状态:
如果是suspend,则需要resume(); audioContext刚创建就是这个状态,此时调用audioElement.play()无效。
但只要有osc被调用了start(),audioContext就会变成running。
但只要有osc被调用了start(),audioContext就会变成running。


## icon
缺少favicon.ico

0 comments on commit f56cc07

Please sign in to comment.