为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

scroll and tabs

more options

Hello. Excuse me for my poor English, I was translating with the program. Recently assembled a new computer, quite expensive and powerful. And there was a problem with Mozilla Firefox. No other browser has such a problem. Namely: pressing the "scroll" button on the mouse does not work, i.e. I cannot hold down the "scroll" button and move the content of the page up and down and right and left. How can you turn on this button, as it was before on another PC. This is the first problem. The second problem is that when you create a new tab or open a page in a new tab, two of these tabs are created (attached image). Two identical copies. It's as if the mouse is double-clicking. But that's not true. I checked in other browsers. The mouse is new and working. I also checked with all the disabled add-ons. Help me solve these problems. Thank you.

Hello. Excuse me for my poor English, I was translating with the program. Recently assembled a new computer, quite expensive and powerful. And there was a problem with Mozilla Firefox. No other browser has such a problem. Namely: pressing the "scroll" button on the mouse does not work, i.e. I cannot hold down the "scroll" button and move the content of the page up and down and right and left. How can you turn on this button, as it was before on another PC. This is the first problem. The second problem is that when you create a new tab or open a page in a new tab, two of these tabs are created (attached image). Two identical copies. It's as if the mouse is double-clicking. But that's not true. I checked in other browsers. The mouse is new and working. I also checked with all the disabled add-ons. Help me solve these problems. Thank you.
已附加屏幕截图

所有回复 (8)

more options

Hi Alexey!

Sorry to hear you are having issues with your mouse and the scroll-wheel. There have been some similar issues related to Extensions being the culprit.

You could Restart in Safe Mode to see if the middle scroll wheel works. To do this :

  1. Click the 3-bar menu at the top right corner of your web browser
  2. Click Help
  3. Click Restart with Add-ons Disabled...
  4. Click Restart
  5. Click Start in Safe Mode
  6. See if that works in Safe Mode by trying to scroll and open new tabs.


If you are able to scroll. Try disabling each extension(if you have any) one at a time as suggested : Suddenly my mouse wheel does not scroll a page as before on various web pages, but on some pages it works fine; Why? {link}

See related article : Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems {link}

Let me know if this helps or if I could assist you further.

由WMagicModel于修改

more options

WMagicModel, I'm a pretty experienced user. And as I said, it's not about add-ons/extensions. I understand when there may be problems because of them. However, I checked again with the plugins disabled, but the problem still remains.

Problem 1: I can't click the scroll to move the content on the page. Problem 2: Tabs sometimes open in pairs.

more options

Hi Alexey,

I understand you're still having issues with your scroll mouse and multiple tabs opening in pairs.

Just to double check, have you tried to clear your cache/cookies as some may have been corrupted resulting with these issues.

Did your mouse come with any new Drivers you could install? Maybe you could check the brand/model and make sure it is up-to-date.

This might be difficult to check, but if possible see if your mouse works with (Firefox) on another computer to eliminate any hardware issues and compatibility with your web browser.

See also:

Scrolling Not Working {link}

more options

it was just to turn on "Use autoscrolling"...

more options

Alexey said

it was just to turn on "Use autoscrolling"...

Hi Alexey, thank you for reporting back. That should be turned on by default, so it's strange that yours was turned off on a new installation.

Did you resolve the issue with two tabs opening instead of one?

more options

Note that you can duplicate a tab by holding down the Ctrl key and dragging the tab in case your mouse driver software modifies key pressses as well.

more options

the problem with opening double tabs was associated with a double-click mouse scroll (Cougar Minos x5)

more options

Alexey said

Hello. Excuse me for my poor English, I was translating with the program. Recently assembled a new computer, quite expensive and powerful. And there was a problem with Mozilla Firefox. No other browser has such a problem. Namely: pressing the "scroll" button on the mouse does not work, i.e. I cannot hold down the "scroll" button and move the content of the page up and down and right and left. How can you turn on this button, as it was before on another PC. This is the first problem. The second problem is that when you create a new tab or open a page in a new tab, two of these tabs are created (attached image). Two identical copies. It's as if the mouse is double-clicking. But that's not true. I checked in other browsers. The mouse is new and working. I also checked with all the disabled add-ons. Help me solve these problems. Thank you.


ScrollTabs adds scroll buttons on the left and right side of the tabs container if not all tabs are visible. It also adds a mouse wheel listener on the container. How it works If either a button is clicked or the mouse wheel is used over the tabs, a 'scroll' event is being fired. This event contains the node elements of the new and old active tab, and the direction in which the tab has changed relative to the old active tab. How to use Provide a tab container var $el = (

); var scroller = scrollTabs($el, {

 selectors: {
   tabsContainer: '.my-tabs-container',
   tab: '.my-tab',
   ignore: '.ignore-me',
   active: '.i-am-active'
 }

});