当用户在滚动页面时可以看到div时,如何移动/弹跳div?不知道滚动条的位置......是否可以通过html5 / css?
谢谢
答案 0 :(得分:1)
使用CSS并将固定属性应用于div。例如:
<html>
<head>
<style>
.fixedposition{
position: fixed;
top:100px;
left:100px;
}
</style>
</head>
<body>
<div class = "fixedposition">Awesome content</div>
</body>
</html>
因此,要回答问题的其他部分,只需HTML5和CSS即可。如果您愿意,也可以使用JavaScript和JQuery。