我使用// Create a reference to the file whose metadata we want to retrieve
var forestRef = storageRef.child('images/forest.jpg');
// Get metadata properties
forestRef.getMetadata().then(function(metadata) {
// Metadata now contains the metadata for 'images/forest.jpg'
}).catch(function(error) {
// Uh-oh, an error occurred!
});
进入全屏。
但是,当我尝试使用ScrollTop时,它不起作用。
我正在使用它:
$("body")[0].webkitRequestFullscreen();
它在Firefox中运行良好但在chrome中没有任何作用。我尝试过使用延迟或动画。都失败了。
$('html, body').scrollTop(0);
如果我使用F11进入全屏,那么scrollTop工作正常。我使用while $(window).scrollTop() returns 0.
的原因是因为我想在我的网页的选定部分全屏显示。