即时生成二维码方便手机使用(主要记录个样式)

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/github_38854224/article/details/81119126

首先是二维码样式

.td-code{position:absolute;background:#fff;z-index:100;top:-75px;left:410px;display:none;}

页面

<td style="position:relative;" onmouseover="showBig(<?php echo $d['id'];?>)" onmouseout="hideBig(<?php echo $d['id'];?>)">
<a href="htt***.php?id=<?php echo $d['id']; ?>" target="_blank"><?php echo $d['name'];?></a>
<div class="td-code" id="bigpic<?php echo $d['id'];?>">
<img src="http://b.bshare.cn/barCode?site=weixin&url=http***ist.php?id=<?php echo $d['id']; ?>" width="150">
</div>
</td>

js

function showBig(id)
{
	$("#bigpic"+id).show();
}
function hideBig(id)
{
	$("#bigpic"+id).hide();
}

效果

猜你喜欢

转载自blog.csdn.net/github_38854224/article/details/81119126