Olly.js

Translate URLs into Rich Media

  • 所有者: abeisgoat/Olly.js
  • 平台:
  • 许可证: MIT License
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

Olly.js (1.0)

A JavaScript library to convert URLs into embedable HTML.

Example

Live Demo

Usage

Instal with bower or download dist/olly.js

bower install Olly.js

After being included with a <script> tag, Olly exposes the olly object (weird, right?). This object has one important method olly.embed The .embed method takes, at a minimum, a URL from a supported service and a DOM element. The method then fills the provided element with the rich media from the provided URL. For example, a link to a Youtube video will fill the provided element with an embedded Youtube player for the video:

olly.embed("https://www.youtube.com/watch?v=x-8QAFqAAJ8", document.getElementById("youtube"));

This will fill #youtube with the following markup.

<embed width="420" height="345" src="http://www.youtube.com/v/x-8QAFqAAJ8" type="application/x-shockwave-flash">

These methods can both take an optional services argument which allows you to specify which types of URLs should be embedded. For example, if we only want Youtube videos to be embedded, we can do this:

olly.embed("https://www.youtube.com/watch?v=x-8QAFqAAJ8", document.getElementById("blog-post"), {youtube: olly.EMBED});

Contributing

If you're looking to add a service to Olly.js, please include the following changes in your pull:

  • The modified sources for Olly.js which integrate the service.
  • An example added to markup/examples.html.
  • A change to the README listing the new service under Supported Services.

Supported Services

Video

  • Youtube
  • Vimeo
  • Twitch.TV
  • Dotsub
  • Dailymotion
  • LiveLeak
  • Vine
  • TED

Audio

  • Soundcloud
  • Spotify

Images

  • Imgur
  • Gfycat

Social

  • Reddit Subreddits and Users
  • Twitter Tweets

Other

  • Github Repos
  • jsFiddle

Supported File Types

Video

  • MP4
  • WebM
  • OGV

Images

  • JPG
  • PNG
  • BMP
  • GIF

Audio

  • MP3
  • OGG

... and any other you want to implement, pull requests are appreciated!

概览

名称与所有者abeisgoat/Olly.js
主编程语言JavaScript
编程语言JavaScript, CSS, HTML (语言数: 3)
平台
许可证MIT License
发布数0
创建于2013-11-25 03:12:50
推送于2016-03-03 18:05:39
最后一次提交2016-03-03 13:05:39
星数437
关注者数18
派生数31
提交数60
已启用问题?
问题数10
打开的问题数5
拉请求数7
打开的拉请求数1
关闭的拉请求数1
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?
去到顶部