JSFiddle - React, Tailwind, and code Playground
by jaredh159
HTML
<div>
</div>
<a>Click to switch to background-size: fixed</a>
CSS
div {
min-height: 300px;
background-image: url(http://www.hdwallpapersnew.net/wp-content/uploads/2015/11/grumpy-cat-tardar-sauce-animals-high-resolution-wallpaper-for-desktop-background-download-free.jpg);
background-size: cover;
}
a {
display: block;
color: blue;
text-decoration: underline;
padding: 1em;
cursor: pointer;
}
Babel + JSX
$('a').on('click', () => {
$('div').css('background-attachment', 'fixed')
});