jQuery的fadeTo方法调整图片的透明度
<script src="jquery-1.9.1.js" type="text/javascript"></script> <script type="text/javascript"> $(function () { $('#Select1').change(function () { var thevalue = $(this).val(); $('img').fadeTo(2000, thevalue); }) }) </script>
透明度: |
补充:web前端 , JavaScript ,