- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
网站:www.rascomed.com .
调整页面大小时,顶部菜单中会弹出一个小菜单按钮。菜单按钮触发 Canvas 外菜单。我想要背景,如图所示 this图片,要透明,这样用户才能看到网站,而不仅仅是一张空白的 Canvas 。
我只想补充一点,该功能有时有效,有时无效。
<div class="offcanvas-menu offcanvas-effect visible-xs">
<button type="button" class="close" aria-hidden="true" data-toggle="offcanvas" id="off-canvas-close-btn">×</button>
<h3>Sidebar Menu</h3>
<ul class="list-unstyled">
<li class="active"><a class="offcanvas-link" href="#page-top">Home<span class="sr-only">(current)</span></a></li>
<li><a class="offcanvas-link" href="#services">Services & Distribution</a></li>
<!--<li><a class="offcanvas-link" href="#work">Works</a></li>-->
<li><a class="offcanvas-link" href="#about">About</a></li>
<!--<li><a class="offcanvas-link" href="#blog">Blog</a></li>-->
<li><a class="offcanvas-link" href="#contact">Contact</a></li>
</ul>
</div><!-- .offcanvas-menu -->
;
(function ($) {
$.fn.extend({
HippoOffCanvasMenu: function (options) {
this.defaultOptions = {
documentWrapper: '.hippo-offcanvas-wrapper',
position : 'hippo-offcanvas-left', // class name
//opener : 'hippo-offcanvas-open', // class name
effect : 'slide-on-top', // class name
contentWrapper : '.hippo-offcanvas-contents',
closeButton : '.hippo-offcanvas-close',
menuWrapper : '.hippo-offcanvas-container', // class name
documentPusher : '.hippo-offcanvas-pusher'
};
var isMobile = function () {
var check = false;
(function (a) {
if (/(android|ipad|playbook|silk|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i.test(a) || /1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i.test(a.substr(0, 4)))check = true
})(navigator.userAgent || navigator.vendor || window.opera);
return check;
};
var settings = $.extend({}, this.defaultOptions, options);
return this.each(function () {
var $this = $(this);
var eventType = isMobile() ? 'touchstart' : 'click';
var transitionEvent = function () {
var t, el = document.createElement("fakeelement");
var transitions = {
"transition" : "transitionend",
"OTransition" : "oTransitionEnd",
"MozTransition" : "transitionend",
"WebkitTransition": "webkitTransitionEnd"
}
for (t in transitions) {
if (el.style[t] !== undefined) {
return transitions[t];
}
}
}
var animationEvent = function () {
var t, el = document.createElement("fakeelement");
var animations = {
"animation" : "animationend",
"OAnimation" : "oAnimationEnd",
"MozAnimation" : "animationend",
"WebkitAnimation": "webkitAnimationEnd"
}
for (t in animations) {
if (el.style[t] !== undefined) {
return animations[t];
}
}
}
$(settings.documentWrapper)
.addClass('hippo-offcanvas-wrapper')
.addClass(settings.position)
.addClass(settings.effect);
$(settings.menuWrapper).show();
$(settings.menuWrapper).addClass('hippo-offcanvas-container');
$(settings.documentPusher).addClass('hippo-offcanvas-pusher');
$(settings.contentWrapper).addClass('hippo-offcanvas-contents');
$(this).on(eventType, function (event) {
event.preventDefault();
event.stopPropagation();
event.stopImmediatePropagation();
$(this).addClass('hippo-offcanvas-button-opened');
$(settings.documentWrapper).addClass('hippo-offcanvas-open');
$('html').addClass('hippo-offcanvas-html-open');
$('body').addClass('hippo-offcanvas-body-open');
$(window).trigger('hippo-offcanvas-open', [settings, this]);
});
$(settings.closeButton).on(eventType, function (event) {
event.preventDefault();
event.stopPropagation();
event.stopImmediatePropagation();
$this.removeClass('hippo-offcanvas-button-opened');
$(settings.documentWrapper).removeClass('hippo-offcanvas-open');
$(window).trigger('hippo-offcanvas-close', [settings, $this]);
$(settings.menuWrapper).one(transitionEvent(), function (e) {
$('html').removeClass('hippo-offcanvas-html-open');
$('body').removeClass('hippo-offcanvas-body-open');
$(window).trigger('hippo-offcanvas-closed', [settings]);
});
$(settings.menuWrapper).one(animationEvent(), function (e) {
$('html').removeClass('hippo-offcanvas-html-open');
$('body').removeClass('hippo-offcanvas-body-open');
$(window).trigger('hippo-offcanvas-closed', [settings]);
});
});
$(document).on(eventType, function (event) {
if (!$(event.target).parents().hasClass('hippo-offcanvas-container')) {
$this.removeClass('hippo-offcanvas-button-opened');
$(settings.documentWrapper).removeClass('hippo-offcanvas-open');
$(window).trigger('hippo-offcanvas-close', [settings, $this]);
$(settings.menuWrapper).one(transitionEvent(), function (e) {
$('html').removeClass('hippo-offcanvas-html-open');
$('body').removeClass('hippo-offcanvas-body-open');
$(window).trigger('hippo-offcanvas-closed', [settings]);
});
$(settings.menuWrapper).one(animationEvent(), function (e) {
$('html').removeClass('hippo-offcanvas-html-open');
$('body').removeClass('hippo-offcanvas-body-open');
$(window).trigger('hippo-offcanvas-closed', [settings]);
});
}
});
});
}
});
})(jQuery);
.hippo-offcanvas-wrapper,
.hippo-offcanvas-pusher,
.hippo-offcanvas-contents {
height : 100%;
}
.hippo-offcanvas-contents {
/* overflow-y : scroll;
background : #f3efe0; */
}
.hippo-offcanvas-open .hippo-offcanvas-contents,
.hippo-offcanvas-open .hippo-offcanvas-contents-inner {
}
.hippo-offcanvas-html-open, .hippo-offcanvas-body-open{
height: 100%
}
.hippo-offcanvas-contents,
.hippo-offcanvas-contents-inner {
position : relative;
}
.hippo-offcanvas-wrapper {
position : relative;
overflow : hidden;
}
.hippo-offcanvas-pusher {
position : relative;
left : 0;
z-index : 99;
height : 100%;
-webkit-transition : -webkit-transform 0.5s;
-moz-transition : -moz-transform 0.5s;
-ms-transition : -ms-transform 0.5s;
-o-transition : -o-transform 0.5s;
transition : transform 0.5s;
}
.hippo-offcanvas-pusher::after {
position : absolute;
top : 0;
right : 0;
width : 0;
height : 0;
background : rgba(0, 0, 0, 0.5);
content : '';
opacity : 0;
-webkit-transition : opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
-moz-transition : opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
-o-transition : opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
transition : opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
z-index: 999;
}
.hippo-offcanvas-open .hippo-offcanvas-pusher::after {
width : 100%;
height : 100%;
opacity : 1;
-webkit-transition : opacity 0.5s;
-moz-transition : opacity 0.5s;
-o-transition : opacity 0.5s;
transition : opacity 0.5s;
}
.hippo-offcanvas-container {
position : absolute;
top : 0;
left : 0;
z-index : 100;
visibility : hidden;
width : 300px;
height : 100%;
background : #27272C; /* Will Change */
-webkit-transition : all 0.5s;
-moz-transition : all 0.5s;
-o-transition : all 0.5s;
transition : all 0.5s;
}
.hippo-offcanvas-container::after {
position : absolute;
top : 0;
right : 0;
width : 100%;
height : 100%;
background : rgba(0, 0, 0, 0.5);
content : '';
opacity : 1;
-webkit-transition : opacity 0.5s;
-moz-transition : opacity 0.5s;
-o-transition : opacity 0.5s;
transition : opacity 0.5s;
}
最佳答案
我用 inspect element 环顾四周,似乎是以下代码使导航栏下的背景变得不透明:
.hippo-offcanvas-html-open, .hippo-offcanvas-body-open{
height: 100%
}
当我禁用 height:100%
时,页面在弹出式导航栏下方可见。
关于javascript - Offcanvas 菜单背景不透明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53469240/
我想禁用我的 UIButton,所以我调用: button.enabled = FALSE; 然而,这会使按钮变得透明,我可以看到它下面的元素。我不介意它改变颜色,我只是不希望它是透明的。 我尝试在
一个常规的 NSButton 如果被禁用,它似乎是透明的。 图像显示了一个样式为“push”的按钮 但是,我想禁用没有透明度的按钮。 我试图以编程方式将 alphaValue 设置为 1.0 但似乎
我正在尝试将Memoji从iPhone/Mac转换为具有透明背景的一系列png,以便我可以创建一个 Sprite 表。当按下空格键时,我可以清楚地看到它具有透明背景,但是在运行 ffmpeg -i s
我想创建一个具有部分透明背景的 View (舞台、窗口)。我有一张包含 Alpha channel 的图像 我在JavaFx中使用了这种场景,我必须将场景填充设置为空,并将根节点背景颜色设置为透明。我
我想创建一个具有部分透明背景的 View (舞台、窗口)。我有一张包含 Alpha channel 的图像 我在JavaFx中使用了这种场景,我必须将场景填充设置为空,并将根节点背景颜色设置为透明。我
我想将 JDesktopPane 设置为透明,并允许我单击下面的内容(例如桌面图标等)。内部框架应保持不透明,并且能够像当前一样在屏幕周围重新定位。有什么想法吗? package test1;
我知道我不是第一个提出此类问题的人,但我认为我的问题有点不同。 我在 MS Paint 上绘制了一个 png 图像,它是一个播放器,当我使用图形对象绘制图像时,我希望图像的背景是透明的。我尝试了一些带
我在 Mac 的 swift 项目中想使用单选按钮,但与我的背景颜色相同。如何将背景设置为不透明或更改背景颜色? 最佳答案 我找到了解决此问题的方法。将单选按钮的文本设置为“”,将 rb 添加到水平堆
我无法将我的相对布局设置为透明。我尝试了很多不同的方法,从类中自定义 View ,添加 android:background="@android:color/transparent"等。它们要么像下图
在 Storyboard中,我创建了一个 ![UINavigationController] 及其 Root View Controller UIViewcontroller。在工具栏中,我有一个分段
我必须让我的导航栏透明,我试过这段代码: self.navigationController?.navigationBar.setBackgroundImage(UIImage(), for: UIB
我注意到,如果我将 View 背景颜色设置为透明,则在 segue 过渡结束后背景颜色会变成黑色(我猜这是默认的“视口(viewport)”颜色)。 我可以改变吗?当然,我可以将颜色从透明更改为紫色,
嘿,有没有可能让滚动条“隐藏”,我不想使用 overflow-y: hidden就像背景:透明或类似的东西 最佳答案 Here您会找到有关如何仅使用 CSS 隐藏滚动条的说明。 在第二个example
默认情况下,背景显示为白色。是否可以通过任何方式将其背景颜色更改为透明..? (function() { var cx = '005519348941191855053:d0uziw7c
我正在尝试添加一个在 div 的左右边缘具有透明度/淡出的嵌入框阴影。我设法添加了一个普通的嵌入框阴影,但我不知道如何为边缘添加透明度。我该怎么做? 这是我正在努力实现的一个例子。 .contai
如何删除 周围的边框并使其背景透明? 最佳答案 试试这个: border: none; border-color: transparent; 关于html - 透明、无边框的文本输入,我们在Stac
是否可以使 JButton 透明(包括边框)而不是文本?我扩展了 swing 的 JButton 并覆盖了它: @Override public void paint(Graphics g) {
众所周知,要使QWidget/QOpenGLWidget半透明/透明,只需: widget->setAttribute(Qt::WA_TranslucentBackground) 但是,由于 QWin
我想知道如何在 Ubuntu 中为所有应用程序制作透明 Gnome 终端,我知道我们可以为桌面制作透明终端,而不是为所有应用程序制作透明终端。我用谷歌搜索了很多,但找不到任何解决方案。谁能告诉我该怎么
我想让 SWT Canvas 的背景透明,以便可以看到它后面的其他小部件。 我尝试将 alpha 设置为 0 并用矩形填充 Canvas ,并且还使用选项 SWT.NO_BACKGROUND 无济于事
我是一名优秀的程序员,十分优秀!