contoh-contoh masalah:
1. Image yang diiginkan x preview spenuhnya.
2. First preview masih oke, bile tutup. dah x perfect.
3. Preview masa buka and tutup ok, tapi movement x smooth (macam ada patah kebelakang sikit)
4. apa ag ek?? tapi xpa, penyelesaian yang sama untuk semua masalah.
Boleh letak code ni kalau belum ada lagi.. Add Gadget >> Add HTML
<style type="text/css">#gb{ position:fixed; top:50px; z-index:+1000; } * html #gb{position:relative;} .gbtab{ height:271px; width:100px; float:left; cursor:pointer; background:url('URL picture yang diingikan') no-repeat; } .gbcontent{ float:left; border:2px solid #666666; background:#F5F5F5; padding:10px; } </style> <script type="text/javascript"> function showHideGB(){ var gb = document.getElementById("gb"); var w = gb.offsetWidth; gb.opened ? moveGB(0, 100-w) : moveGB(100-w, 0); gb.opened = !gb.opened; } function moveGB(x0, xf){ var gb = document.getElementById("gb"); var dx = Math.abs(x0-xf) > 10 ? 5 : 1; var dir = xf>x0 ? 1 : -1; var x = x0 + dx * dir; gb.style.right = x.toString() + "px"; if(x0!=xf){setTimeout("moveGB("+x+", "+xf+")", 10);} } </script> <div id="gb"> <div class="gbtab" onclick="showHideGB()"> </div> <div class="gbcontent"> ShoutMix Box or Cbox HTML code anda disini. <div style="text-align:right"> <a href="javascript:showHideGB()"> [close] </a> </div> </div> </div> <script type="text/javascript"> var gb = document.getElementById("gb"); gb.style.right = (100-gb.offsetWidth).toString() + "px"; </script>
Tapi mseti preview x cantek.. so. cara atasinya adalah.
1. cek size picture anda.
2. Ubah warna merah dibawah mengikut size picture anda. Cari code ini diatas.
.gbtab{ height:271px; width:100px; float:left; cursor:pointer;
3. Then ubah warna merah dibawah mengikut size width picture anda. Cari code ini diatas.
var w = gb.offsetWidth; gb.opened ? moveGB(0, 100-w) : moveGB(100-w, 0); gb.opened = !gb.opened;
4. Lastly, ubah warna merah dibawah mengikut width picture anda. Cari code ini diatas.
gb.style.right = (100-gb.offsetWidth).toString() + "px";