Skip to content

Commit

Permalink
For test
Browse files Browse the repository at this point in the history
  • Loading branch information
ksj000625 committed Feb 28, 2024
1 parent 8dc60fa commit c2a8627
Showing 1 changed file with 7 additions and 13 deletions.
20 changes: 7 additions & 13 deletions src/views/page/Projects/Podcast/Mobile/PodcastContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -189,9 +189,8 @@ function PodcastContent() {
<audio ref={audioRef} autoPlay={true} muted={isMuted}>
<source src={record} type="audio/mp3" />
</audio>
{/** 헤더 */}
<div className={styles.header}>
{/** 음소거 버튼 */}

{/* <div className={styles.header}>
<div
className={styles.soundButton}
onClick={() => {
Expand All @@ -204,7 +203,6 @@ function PodcastContent() {
<img alt="" src={process.env.PUBLIC_URL + "/on.png"} />
)}
</div>
{/** 뒤로가기 버튼 */}
<svg
width="40"
height="40"
Expand Down Expand Up @@ -276,23 +274,19 @@ function PodcastContent() {
</filter>
</defs>
</svg>
{/** 배속 버튼 */}
<div className={styles.speedButton} onClick={handleSpeedClick}>
<p>{playbackRate}x</p>
</div>
</div>
</div> */}

{/** 내용 container */}
<div className={styles.container}>
{/* <div className={styles.container}>
<br />
<br />
<br />
{scriptCard}
</div>
</div> */}

{/** 푸터 */}
<div className={styles.footer}>
{/** 총 재생시간 */}
{/* <div className={styles.footer}>
<div className={styles.playTime}>
<p>
{Math.floor(runningTime / 60)}:{Math.floor(runningTime % 60)}
Expand Down Expand Up @@ -544,7 +538,7 @@ function PodcastContent() {
/>
</svg>
</div>
</div>
</div> */}
</div>
);
}
Expand Down

0 comments on commit c2a8627

Please sign in to comment.