美文网首页
2018-02-16文字搬运工

2018-02-16文字搬运工

作者: 朱禹诺 | 来源:发表于2018-02-16 12:20 被阅读0次
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script>
        window.onload=function () {
            var words = document.getElementById('words');
            var button = document.getElementById('button');
            var right = document.getElementById('right');
            var numRight = document.getElementById('two');
            var numleft = document.getElementById('one');

            button.onclick = function () {
                var strWords = words.value;
                var arr = strWords.split("");
                var index = 0 ;
                var copy = "";
                numRight.innerHTML = arr.length;
                if(arr.length == 0)
                {
                    alert("请在左侧输入一些文字后再点击按钮");
                }
                else
                {
                    var timeid = setInterval(function () {
                        words.value = strWords.substr(index+1);
                        copy+= arr[index]
                        right.innerHTML = copy;
                        numleft.innerHTML = index+1;
                        index++;
                        if(index==arr.length)
                        {
                            clearInterval(timeid);
                        }
                    },100)

                }

            }

        }
    </script>
    <style>
    body{
        background-color: #b6b6b6;
    }
    .all{
        width: 846px;
        height: 281px;
        margin: 0 auto;
        border: 1px solid white;
        background-color: white;
        margin-top: 51px;

    }
    .left textarea{
        border:none;
        background-color: #EFEFD6;
        width: 340px;
        height: 240px;
        float: left;
        margin-left: 21px;
        margin-top: 20px;
        font-size: 18px;
    }
        #right{
        border: 1px solid #63EFF7;
        background-color: #63EFF7;
        width: 340px;
        height: 240px;
        float: right;
        margin-right: 21px;
        margin-top: 20px;
        font-size: 16px;
    }
    .center{
        float: left;
        margin-top: 20px;
        text-align: center;
    }
    .center .word{
        width: 111px;
        background-color: #F76300;

        padding-top: 10px;
        padding-bottom: 10px;
        margin-left: 4px;
    }
    .center a{
        font-size: 16px;
        color: white;
    }
    .center .num{
        font-size: 18px;
        font-family: 微软雅黑;
        margin-top: 26px ;
    }
    </style>
</head>
<body>
<div class="all">
    <div class="left">
        <textarea id="words"></textarea>
    </div>
    <div class="center">
        <div class="word" id="button"><a href="#">把文字右移</a></div>
        <div class="num"><span id="one">0</span>/<span id="two">0</span></div>
    </div>
    <div id="right">

    </div>
</div>
</body>
</html>

相关文章

  • 2018-02-16文字搬运工

  • 文字,文章

    我我不生产文字,我们只是文字的搬运工。

  • 文字搬运工

  • 文字搬运工

  • 文字搬运工

  • 文字搬运工

    我记得你爱我,或许是我记反了。 想念有个别名,叫自捅千刀。 《李宫俊的诗》 韩寒说:“我们听过无数的道理,却仍旧过...

  • 文字搬运工

    简书的主题是创作。 我的文字功底很差,写作的内容大部分就是参照、借鉴、模仿、其实也可以说是抄袭,但文字的魅力很大,...

  • 文字搬运工

    讲起搬运工,每个人都知道,泛指是把某种重而多的货物,根据货主的要求,通过繁重而比较复朵的过程,耗用很大的时间...

  • 今日晴,不算冷

    最近两天更新的感受就是:做个文字搬运工比编辑文字容易多了,所谓的文字搬运工是从看过的文章里挑些自己喜欢的一段文...

  • 媒体

    我们不是文字的生产者 我们只是广告的搬运工

网友评论

      本文标题:2018-02-16文字搬运工

      本文链接:https://www.haomeiwen.com/subject/owkptftx.html