现在的详情页页面如下:
想要改成这样的详情页模板:
就是可以在详情页鼠标移动到哪个就会显示改版块内容。
演示地址:http://www.cssmoban.com/preview/index.html?url=http://demo.kangjingept.com:8020/cssthemes6/zly2021010120_17/index.html&id=17851&tid=20125072756579
希望哪位老师或者大神帮助我一下,给钱也行啊
欧阳克2021-05-12 13:52:20
鼠标移动是js效果,你跟着这个模板写效果呀。。 先把样式写好。
下面是鼠标事件,写好样式,在写事件
<script type="text/javascript" src="/jquery/jquery.js"></script><script type="text/javascript">$(document).ready(function(){ $("p").mouseover(function(){ $("p").css("background-color","yellow"); }); $("p").mouseout(function(){ $("p").css("background-color","#E9E9E4"); });});