我可能会从样式为position:fixed
和的 div 开始display:none
:
<div id="randomp" style="display:none;position:fixed;width:165px;height:29px;background:url(/logo2.png) no-repeat;background-size: 165px;"></div>
然后使用 jQuery 确定位置 CSS 设置并开启可见性
$(document).ready(function() {
// get jQuery object for the div
var $randomp = $('#randomp');
// determine whether to show top or bottom, left or right
var top = Math.round(Math.random()); // generate 0 or 1 value
if (top === 1) {
$randomp.css('top', '3px');
} else {
$randomp.css('bottom', '3px');
}
var left = Math.round(Math.random());
if (left === 1) {
$randomp.css('left', '3px');
} else {
$randomp.css('right', '3px');
}
// show the div
$randomp.show();
});
当然,您也可以使用服务器端代码来执行此操作,但是由于您在标签中专门询问了 javascript/jquery,因此我建议使用此解决方案。