Skip to content

canglinstraw/shikwasa

 
 

Repository files navigation

shikwasa branding image


npm size license

About

Shikwasa is an ultra-lightweight, dependency-free web audio player born for podcast. You may enjoy a podcast with occasional playback controls to get the best listening experience, just like I do - tweaking with handy forward/backward or speed buttons. But chances are traditional html audio players don't offer them - who would play music on 1.5x speed?

➡️DEMO here⬅️

What does Shikwasa mean?

In case you wonder, it's the name of a popular citrus fruit from Okinawa, Japan. 🍊

Installation

npm install shikwasa

Usage

  1. include stylesheet and script

     <head>
       <link rel="stylesheet" href="shikwasa.min.css">
     </head>
     <body>
       <script src="shikwasa.min.js"></script>
     </body>
  2. Specify a container for the player to be injected into. For example:

     <div class="elementOfYourChoice">
       <!-- this is where the player will be injected -->
     </div>
  3. Create an instance of the player

    // a detailed init example
    
    const player = new Shikwasa({
      fixed: {
        type: 'auto',
        position: 'bottom',
      },
      container: document.querySelector('.elementOfYourChoice'),
      transitionSpeed: 3,
      themeColor: '#00869B',
      autoPlay: false,
      muted: false,
      preload: 'metadata',
      speedOptions: [0.5, 0.75, 1.25, 1.5],
      audio: {
        title: 'Hello World!',
        artist: 'Shikwasa FM',
        cover: 'image.png',
        src: 'audio.mp3',
      },
    })

If container has any child nodes, it will be cleared before Shikwasa mounts. Note: For now, only one player per page is supported.

  1. If you use module system, import like this:

     import 'shikwasa/dist/shikwasa.min.css'
     import Shikwasa from 'shikwasa'
    
     const player = new Shikwasa(options)

Methods

// play the current audio
player.play()

// pass a designated audio object to play it immediately
player.play({
  title: 'Embrace the universe with a cup of shikwasa juice',
  artist: 'Shikwasa',
  cover: 'image.png',
  src: 'sourceAudio.mp3'
})

// pause the current audio
player.pause()

// toggle audio play state between play and pause
player.toggle()

// destroy player
player.destroy()

Options

audio (required)

  • type: Object
  • default: null
  • description: The target audio to be played. If duration is passed in, players with preload option set to none will have a audio duration time display before the audio metadata is fetched. However, after the audio metadata is loaded, this prop will be ignored.
  • properties:
  audio: {
    title: String,
    artist: String,
    cover: String,
    src: String,
    duration: Number,  // optional
  }

container (optional)

  • type: HTMLCollection
  • default: document.querySelector('body')
  • description: Container element for the player.

fixed (optional)

  • type: Object
  • default:
fixed: {
  type: 'auto',
  position: 'bottom',
}
  • description: Whether player should be fixed to viewport.
Property Type Description
type String either auto, static or fixed
auto: player position is controlled by media queries. Normally the player stays static, but on small screens it will be fixed to viewport
static: force the player to remain static regardless of screen width
fixed: force the player to fix to viewport
position String either bottom or top
Note: position will be ignored when type is set to static

transitionSpeed (optional)

  • type: Number
  • default: 3
  • description: If audio title overflows, a text scroll will be triggered. This property will control the how fast the text will scroll. Choose between the range of [1, 5], integer.

themeColor (optional)

  • type: String
  • default: #00869B
  • description: Theme color of the player.

autoplay (optional)

  • type: Boolean
  • default: false
  • description: If audio should autoplay on load. Note: Chrome and Safari disable audio autoplay unless muted is set to true by default. To comply with this policy, see details in Chrome Developers and Webkit Announcement.

muted (optional)

  • type: Boolean
  • default: false
  • description: Whether audio should be muted by default. Right now this will not have any impact on audio object's defaultMuted property.

preload (optional)

  • type: String

  • default: metadata

  • description: choose from auto, metadata and none. For details view MDN Doumentation.

speedOptions (optional)

  • type: Array

  • default: [0.5, 0.75, 1.25, 1.5]

  • description: The playback speed range. Each value of the array should be between the range of 0.25 to 5.0, or will likely be ignored by certain browsers

download (optional)

  • type: Boolean
  • default: true
  • description: whether the current audio file is download-able. When set to true, a download button shows up on the player.

Possible Future Features

  1. exposing native audio events
  2. multiple players with independent controls in one page
  3. dark mode
  4. podcast playlist

License

MIT

About

An audio player born for podcast

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 53.5%
  • HTML 28.3%
  • CSS 18.2%