
html:
Code: Select all
r
Code: Select all
body {
height: 100%;
width: 100%;
}
.container {
width: 100%;
position: relative;
float: left;
background: #fff;
height: 1200px;
}
.inner {
width: 150px;
height: 100px;
position: absolute;
top: 20%;
left: 10%;
background: red;
}
Code: Select all
var offset = $(".inner").offset();
$(window).scroll(function(event) {
var st = $(this).scrollTop();
$(".inner").css("left", st + offset.left);
});
Mobile version