用JS怎样使图片点击时慢慢变大再点击时慢慢变小,并能实现来回点击多次

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用JS怎样使图片点击时慢慢变大再点击时慢慢变小,并能实现来回点击多次相关的知识,希望对你有一定的参考价值。

参考技术A function chk()
var obj =document.getElementById("img");
if(obj.width<=100)
obj.setAttribute("width",500);
else
obj.setAttribute("width",100);


<a href="#"><img id="img" style="border:0px" src="./1.gif" onclick="chk()"></a>

jquery点击div 先变大再缩小

<!DOCTYPE html>
<html>
  <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
         <script src="http://code.jquery.com/jquery-1.8.0.min.js"></script>
        <title>
         jquery点击div 先变大再缩小
        </title>
        <script>
            $(function(){
                $("div").toggle(function(){
                    $(this).css({
                     "width":"900px",
                      "height":"500px",
                      "position":"absolute",
                      "top":"0",
                      "left":"0"
                    });
                },function(){
                    $(this).css({
                         "width":"200px",
                         "height":"200px",
                    
                        
                    });
                });
            })
        </script>
  </head>
    <body>
    <div style="background-color:blue">
            点击
        </div>
  </body>
</html>

以上是关于用JS怎样使图片点击时慢慢变大再点击时慢慢变小,并能实现来回点击多次的主要内容,如果未能解决你的问题,请参考以下文章

android 微店APP点击到店铺页面时,向上滑动时,标题栏慢慢的出现,并带有点特效

jquery点击div 先变大再缩小

怎么设置图片的KB变大

怎样用jquery实现弹出框的弹出时渐渐增大,最小化时渐渐变小的特效,在此先感谢!

Qt designer 怎样使用 layout 控制布局, 可以实现 随着窗口的拉大拉小,部件也随着变大变小啊。。

html5或者JS怎样调用手机摄像头或者相册?