I just want to know how this late body background-image animation/transition works just like on
- Fate/Extra in Pure CSS w/o javascripts.
If you notice the delayed scrolling of the background image, that's what I've wanted to achieve
I can't provide any codes for this, cuz this is the first time I've asked stackoverflow.
Here's a simple Html & CSS for example:
body {
height: 700px;
overflow: auto;
background-image: url("http://www.webdesign.org/img_articles/17101/step2.gif");
background-size: 50%;
}
#body_wrapper {
background: transparent url("http://www.clipartkid.com/images/678/image-page-transparent-background-oasis-skin-1-png-modern-wikia-1MESpa-clipart.png");
height: 700px;
width: 200px;
}
<body>
<center>
<div id="body_wrapper">
<h1>Contents</h1>
<h1>Contents</h1>
<h1>Contents</h1>
<h1>Contents</h1>
<h1>Contents</h1>
<h1>Contents</h1>
<h1>Contents</h1>
<h1>Contents</h1>
<h1>Contents</h1>
<h1>Contents</h1>
<h1>Contents</h1>
<h1>Contents</h1>
</center>
</div>
</body>
How can I put a transition/animation to my body background-image so when scrolled by mouse click or mouse wheel the body background-image will be delayed by .7 sec or something.
I'm not very good with CSS I just started learning please help me out with this.