这个属于DOM范畴,也就是使用JavaScript控制的。
比如一张图片或者也可以是一个div。
直接用jQuery实现:
假设div id为xx
设置样式:
#xx
{
position:fixed; 脱离文档流
right:0px; 距右边距为0
bottom:-150px; 初始的时候在document下方(不显示)
}
$(function () {
$("#xx").animate({ "bottom": 0 }, 2000);//在2秒钟 距bottom的距离由-150变为0 缓慢显示出来
})
如果想直接使用js操作,就是用定时器。