面板窗口不滚动

时间:2015-02-23 11:16:22

标签: javascript google-chrome-extension

我正在使用以下代码来创建面板但不知何故它滚动不起作用:

chrome.windows.create({
                url: "panel.html",
                type: "panel",
                focused: true,
                width: 500,
                height: 320
              },

如何让它可滚动?

Chrome版

40.0.2214.115 (Official Build) on OSX 10.6

panel.css

body {
  font-family: Helvetica, Arial;
  width: 300px;
  background-color: #ffe; }

.error {
  color: #900; }

span.active {
  color: #060; }

span.inactive {
  color: #600; }

.ad video {
  width: 328%;
}

panel.html

<html>
  <head>
      <title>This is PANEL</title>
    <link href='assets/stylesheets/panel.css' rel='stylesheet'>
    <script src='assets/javascripts/jquery-1.10.2.js'></script>
    <script src='assets/javascripts/panel.js'></script>
  </head>
</html>
<body>
  <header>
    <div class="title"></div> 
  </header>

  <div class='content'>
    <div class='panel'>
      <div class='ad'>
        <div class='no-activity' style='display: none'> 
Lorem IsPum       
 </div> 
        <div class='skipped' style='display: none'> 
Lorem IsPum
        </div> 
        <div class='activity survey' style='display: none'> 
          <p>Lorem IsPumit?</p> 
          <p> 
            <textarea rows='8' class='comments' placeholder='Enter comments. Enter N/A if you have no comments.'></textarea> 
          </p>  
          <p> 
            <button id='show-next-ad'>Show Next Ad</button> 
          </p>
        </div>
      </div>
    </div>

    <div class='panel'>
      <div class="video-player">    
        <div class="add"></div>
      </div>
    </div>
  </div>
</body>

0 个答案:

没有答案