简体   繁体   中英

JPlayer on Rails

I am using Ruby on Rails 3 to create my site. I am trying to install Jplayer into my site, however i am fairly new to this. I built the javascript with Dashcode and it put it into my rails folder, but i do not know if i need to move it into the apps folder or just leave it in the folder as my project. I am also supposed to be putting code into my (html) but Rails usually doesn't do it that way, so can i just put the code anywhere in the page? I have been following the "Quick start" tutorial for jPlayer by Happyworm but i am getting this

在此处输入图像描述

which is not what it is supposed to look like. This is a link the the second to last step in the tutorial where i am supposed to get a visual image of the audio player which also includes the code i have in my page. I know i put a lot of questions in but any help would be great. Thanks!

write this inside you head tag:

<link href="http://jplayer.org/latest/skin/pink.flag/jplayer.pink.flag.css" rel="stylesheet" type="text/css" />

It looks like you're not loading a stylesheets/theme for jplayer.

You have to load a theme (You can find the standard one here )

<head>
  <link rel="stylesheet" type="text/css" href="static/jPlayer/jplayer.blue.monday.css" />
  <!-- ... -->
</head>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM