JQuery(*‘ω‘ *)ぼいん

by ethertank

HTML

<div id="container">
    
<p>
    <a href="#container" id="back" title="上に戻る">(*‘ω‘ *)  ぼいんっ </a>
</p>
    
</div>

CSS

#container { padding-top: 1000px; }

#back {
    display:block;
    width:10em;
    line-height:1.2;
    font-family:'MS Pゴシック';
    text-decoration:none;
    outline:none;
}

JavaScript

$(function() {
    var Ss = navigator.appName.match(/Opera/) ? "body" : "html,body";
    $('#back').click(function() {
        $(Ss).animate({
            scrollTop: 0
        }, 400);
        return false;
    });
});