zoukankan      html  css  js  c++  java
  • 给链接加上动态注释

    给链接加上动态注释

            <STYLE type="text/css">
    <!--
    .article {
    BORDER-BOTTOM: black 1px solid; BORDER-LEFT: black 1px solid; BORDER-RIGHT: black 1px solid; BORDER-TOP: black 1px solid;
    FILTER: revealTrans(transition=23,duration=0.5) blendTrans(duration=0.5); POSITION: absolute; VISIBILITY: hidden
    ; background-color: #FFCC00; padding-top: 3px; padding-right: 3px; padding-bottom: 3px; padding-left: 3px}
    -->
    </STYLE>

    <SCRIPT language=JavaScript1.2>
    <!--
    function Show(divid) {
    divid.filters.revealTrans.apply();
    divid.style.visibility = "visible";
    divid.filters.revealTrans.play();
    }
    function Hide(divid) {
    divid.filters.revealTrans.apply();
    divid.style.visibility = "hidden";
    divid.filters.revealTrans.play();
    }
    //-->
    </script>

    <a href="#" onMouseOver=Show(aaa) onMouseOut=Hide(aaa)>
    欢迎光临分享JavaScript</a></div>
       <div id="aaa" class="article">我们的家园:http://www.sharejs.com</div>

  • 相关阅读:
    Mysql多个字段同时满足多组条件
    spring-boot 配置Druid监控
    回顾存储过程简单使用
    win10环境下使用docker部署spring-boot项目
    LeetCode 35. 搜索插入位置
    二分查找
    归并排序(二)
    归并排序
    剑指 Offer 68
    剑指 Offer 68
  • 原文地址:https://www.cnblogs.com/wzg0319/p/2029305.html
Copyright © 2011-2022 走看看