現在的詳情頁頁面如下:
想要改成這樣的詳情頁範本:
就是可以在詳情頁滑鼠移動到哪一個就會顯示改版塊內容。
示範網址:http://www.cssmoban.com/preview/index.html?url=http://demo.kangjingept.com:8020/cssthemes6/zly2021010120_17/index.html&id=17851&tid=201250727272727272727
希望哪位老師或大神幫我一下,給錢也行啊
滑鼠移動是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"); });});
滑鼠移動是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"); });});