pub struct Window(/* private fields */);
Expand description
The Window
object represents a window containing a DOM document.
Implementations§
Source§impl Window
impl Window
Sourcepub fn alert(&self, message: &str)
pub fn alert(&self, message: &str)
The Window.alert() method displays an alert dialog with the optional specified content and an OK button.
Sourcepub fn confirm(&self, message: &str) -> bool
pub fn confirm(&self, message: &str) -> bool
The Window.confirm() method displays a modal dialog with an optional message and two buttons: OK and Cancel.
Sourcepub fn local_storage(&self) -> Storage
pub fn local_storage(&self) -> Storage
The local_storage
property allows you to access a local Storage
object.
It is similar to the Window::session_storage.
The only difference is that, while data stored in local_storage
has
no expiration time, data stored in session_storage
gets cleared when
the browsing session ends - that is, when the browser is closed.
Sourcepub fn session_storage(&self) -> Storage
pub fn session_storage(&self) -> Storage
The session_storage
property allows you to access a session Storage
object for the current origin.
It is similar to the Window::local_storage,
The only difference is that, while data stored in local_storage
has
no expiration time, data stored in session_storage
gets cleared when
the browsing session ends.
A page session lasts for as long as the browser is open and survives over page reloads and restores. Opening a page in a new tab or window will cause a new session to be initiated, which differs from how session cookies work.
Sourcepub fn location(&self) -> Option<Location>
pub fn location(&self) -> Option<Location>
Returns a Location object which contains information about the URL of the document and provides methods for changing that URL and loading another URL.
Sourcepub fn request_animation_frame<F: FnOnce(f64) + 'static>(
&self,
callback: F,
) -> RequestAnimationFrameHandle
pub fn request_animation_frame<F: FnOnce(f64) + 'static>( &self, callback: F, ) -> RequestAnimationFrameHandle
You should call this method whenever you’re ready to update your animation onscreen. This will request that your animation function be called before the browser performs the next repaint. The number of callbacks is usually 60 times per second, but will generally match the display refresh rate in most web browsers as per W3C recommendation. request_animation_frame() calls are paused in most browsers when running in background tabs or hidden iframes in order to improve performance and battery life.
The callback method is passed a single argument, a f64, which indicates the current time when callbacks queued by requestAnimationFrame() begin to fire. Multiple callbacks in a single frame, therefore, each receive the same timestamp even though time has passed during the computation of every previous callback’s workload. This timestamp is a decimal number, in milliseconds, but with a minimal precision of 1ms (1000 µs).
Sourcepub fn history(&self) -> History
pub fn history(&self) -> History
Returns the global History object, which provides methods to manipulate the browser history.
Sourcepub fn inner_width(&self) -> i32
pub fn inner_width(&self) -> i32
Returns the width (in pixels) of the browser window viewport including, if rendered, the vertical scrollbar.
Sourcepub fn inner_height(&self) -> i32
pub fn inner_height(&self) -> i32
Returns the height (in pixels) of the browser window viewport including, if rendered, the horizontal scrollbar.
Sourcepub fn outer_width(&self) -> i32
pub fn outer_width(&self) -> i32
Returns the width of the outside of the browser window. It represents the width of the whole browser window including sidebar (if expanded), window chrome and window resizing borders/handles.
Sourcepub fn outer_height(&self) -> i32
pub fn outer_height(&self) -> i32
Returns the height of the outside of the browser window. It represents the height of the whole browser window including sidebar (if expanded), window chrome and window resizing borders/handles.
Sourcepub fn page_y_offset(&self) -> f64
pub fn page_y_offset(&self) -> f64
The read-only Window property pageYOffset is an alias for scrollY; as such, it returns the number of pixels the document is currently scrolled along the vertical axis (that is, up or down), with a value of 0.0 indicating that the top edge of the Document is currently aligned with the top edge of the window’s content area.
Sourcepub fn page_x_offset(&self) -> f64
pub fn page_x_offset(&self) -> f64
This is an alias for scrollX.
Sourcepub fn device_pixel_ratio(&self) -> f64
pub fn device_pixel_ratio(&self) -> f64
The ratio in resolution from physical pixels to CSS pixels
Sourcepub fn get_selection(&self) -> Option<Selection>
pub fn get_selection(&self) -> Option<Selection>
Returns a Selection object representing the range of text selected by the user or the current position of the caret. (Javascript docs)
Trait Implementations§
Source§impl From<Window> for EventTarget
impl From<Window> for EventTarget
Source§impl IEventTarget for Window
impl IEventTarget for Window
Source§fn add_event_listener<T, F>(&self, listener: F) -> EventListenerHandlewhere
T: ConcreteEvent,
F: FnMut(T) + 'static,
fn add_event_listener<T, F>(&self, listener: F) -> EventListenerHandlewhere
T: ConcreteEvent,
F: FnMut(T) + 'static,
EventTarget
on which it’s called. Read more