标签:
如何使用jQuery设置背景的透明度:
下面介绍一下如何利用jQuery实现背景的透明效果。
代码实例如下:
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.51texiao.cn/" /> <title>蚂蚁部落</title> <style type="text/css"> div{ width:150px; height:150px; background-color:green; } </style> <script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("div").animate({"opacity":"0.1"},1500); }) </script> </head> <body> <div></div> </body> </html>
原文地址是:http://www.51texiao.cn/jqueryjiaocheng/2015/0427/250.html
标签:
原文地址:http://www.cnblogs.com/softwhy/p/4636240.html