DevsDawn
DevsDawn

javascript
文章归档

解决getUserMedia is not implemented in this browser报错

使用新版chrome/edge浏览器,在确定浏览器支持的情况下,调用navigator.mediaDevices.getUserMedia仍然提示浏览器不支持: getUserMedia is not implemented in this browser navigator.mediaDevices.getUserMedia({ video: true, video: { facingMode: "environment"} }).then(function(stream) { console.log(stream); }).catch(function(err) { console.log(err); }); 解决:检查网站是否已使用https,http协议下无法使用。

2020-12-16  

jQuery实现垂直居中+iframe高度自适应

jQuery垂直居中 if ($(".ClassName").height() = $(window).height()) $(".ClassName").css("marginTop",$(window).height()/2 - $(".ClassName").height()/2); jQuery iframe高度自适应 $(document).ready( function() { $(window).resize(function(){$(".iframeName").height($(window).height());}); $(".iframeName").load(function(){$(this).height($(window).height());}); } );

2017-06-24