mcustomscrollbar

Selenium: horizontal scroll using Actions class

柔情痞子 提交于 2020-01-23 20:47:29
问题 I have tried various to access this custom scroll bar on my web page through Selenium actions as well as Javascript Executor. The scroll bar scrolls through only 500 pixels when in fact I want it to scroll throughout the complete width. Any help is appreciated. Below is my current code snippet: WebElement slider = element("slider_div"); WebElement scrollbar = element("scrollbar"); int w = slider.getSize().getWidth(); Actions move = new Actions(driver); move.dragAndDropBy(e, offset, 0).build()

滚动条插件 mCustomScrollbar 使用介绍

妖精的绣舞 提交于 2019-12-17 08:52:57
用法 HTML 在HTML文档头部引入mCustomScrollbar.css <head> <meta charset="UTF-8"> <title>Document</title> <link rel="stylesheet" href="/path/to/jquery.mCustomScrollbar.css" /> </head> 在body的结束标签之前引入插件所需js文件 <script src="/path/to/jquery/1.11.1/jquery.min.js"></script> <script src="/path/to/jquery.mCustomScrollbar.concat.min.js"></script> CSS 需要创建滚动条的元素必须具有明确的CSS属性使元素形成包裹的块级元素: 具有高度值(height) 最大高度值(max-height) 具有overflow属性值为auto或者hidden 元素的内容具有足够的高度(或宽度,针对横向滚动条) 初始化 通过JavaScript初始化 把相关的文件加载进页面之后,call mCustomScrollbar function on the element selector you want to add the scrollbar(s) <script> (function($){ $

jQuery plugins: apply mCustomScrollbar to SCEditor

六眼飞鱼酱① 提交于 2019-12-08 17:43:48
问题 How can I apply mCustomScrollbar to SCEditor? This is what I've tried so far: HTML <button id="btnScrollBar">Apply scrollbar</button> <textarea id="editor"></textarea> JS $("#editor").sceditor({ plugins: "xhtml", width: '100%', style: "http://www.sceditor.com/minified/jquery.sceditor.default.min.css" }); $("#btnScrollBar").click(function() { console.log("click"); $(".sceditor-container iframe").contents().find("body").mCustomScrollbar(); }); I also tried another approach, following this

Replace Browser Scrollbar with Custom Content Scroller

大城市里の小女人 提交于 2019-12-04 07:05:40
I'm using the jQuery custom content scroller on my site and have all the files installed correctly. However, I would like this plugin to replace my default browser scrollbar and I'm having a difficult time making that happen. Obviously, I would need to apply it to the overall HTML markup. To add this plugin to content the developer suggests the following: <script> (function($){ $(window).load(function(){ $(".your-div-class-here").mCustomScrollbar(); }); })(jQuery); </script> So far, to apply it to the browser scrollbar, I've tried the code below and it hasn't worked: <script> $(document).ready

jQuery mCustomScrollbar not working on ajax content

匿名 (未验证) 提交于 2019-12-03 08:59:04
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: $(window).load(function(){ $("#content_1").mCustomScrollbar({ scrollButtons:{ enable:true } }); // ajax code function beauty_of_ceylon() { $('.content-text').html('<p style="position:absolute;"><img src="images/ajax-loader.gif" /></p>'); $('.content-text').load("packages/beauty-of-ceylon.php"); } 回答1: $('.content-text').load("packages/beauty-of-ceylon.php", function () { $("#content_1").mCustomScrollbar({ scrollButtons:{ enable:true } }); $content = '<button id="update" onclick="$('#content_1').mCustomScrollbar('update');" style="display

自定义滚动条mCustomScrollbar

馋奶兔 提交于 2019-11-28 04:57:54
mCustomScrollbar 是个基于 jQuery UI 的自定义滚动条插件,它可以让你灵活的通过 CSS 定义网页的滚动条,并且垂直和水平两个方向的滚动条都可以定义,它通过 Brandon Aaron jquery mouse-wheel plugin 提供了鼠标滚动的支持,并且在滚动的过程中,还可以缓冲滚动使得滚动更加的平滑,还可以自动调整滚动条的位置和定义滚动到的位置等。(HTML必须存在于文档流, 不能为display:none) 1.如何使用 mCustomScrollbar(必须要加载如下的4个文件) jquery.mCustomScrollbar.js jquery.mousewheel.min.js jquery.mCustomScrollbar.css mCSB_buttons.png jQuery:这个插件的必备库 jQuery UI:扩展 jQuery 库并且为我们的滚动条提供了简单的动画和拖动功能。 jquery.mousewheel.min.js:这是 Brandon Aaron 编写的一个伟大的只有2kb的插件,它面向所有的操作系统和浏览器,为我们提供了鼠标滚动事件的支持。 jquery.mCustomScrollbar.js:这是我们的插件主文件。在插件包的 minified 你可以找到它的压缩版。 jquery.mCustomScrollbar

jQuery自定义滚动条样式插件mCustomScrollbar

 ̄綄美尐妖づ 提交于 2019-11-27 19:34:24
如果你构建一个很有特色和创意的网页,那么肯定希望定义网页中的滚动条样式,这方面的 jQuery 插件比较不错的,有两个: jScrollPane 和 mCustomScrollbar 。 关于 jScrollPane,大家见过的可能比较多,但是这个插件太过于古老而且功能不强大,效果在几年前非常不错,但是放在现在就不好说了。所以我选择了后者: mCustomScrollbar 。下图是两者官方示例的简单对比: 本文就是介绍如何使用 mCustomScrollbar 这个插件,大部分的内容是翻译自 mCustomScrollbar 官方的介绍页面 ,但是根据自己的理解做了部分的调整和修改,同时增加一些自己在使用中的一些技巧。 关于 mCustomScrollbar mCustomScrollbar 是个基于 jQuery UI 的自定义滚动条插件,它可以让你灵活的通过 CSS 定义网页的滚动条,并且垂直和水平两个方向的滚动条都可以定义,它通过 Brandon Aaron jquery mouse-wheel plugin 提供了鼠标滚动的支持,并且在滚动的过程中,还可以缓冲滚动使得滚动更加的平滑,还可以自动调整滚动条的位置和定义滚动到的位置等。总之,你知道非常好用就是了,:-) 下载 | 演示 如何使用 mCustomScrollbar mCustomScrollbar