美文网首页
02.14作业

02.14作业

作者: xxxQinli | 来源:发表于2019-02-14 18:18 被阅读0次

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script type="text/javascript" src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script>
<style>
*{
margin: 0px;
padding: 0px;
}
#bg{
width: 100%;
height: 100%;
position: relative;
}
#blue{
width: 200px;
height: 200px;
background: blue;
position: absolute;
}
#green{
width: 200px;
height: 200px;
background: green;
position: absolute;
}
#red{
width: 200px;
height: 200px;
background: red;
position: absolute;
left: 0px;
top:0px;
}
#textblock{
width: 600px;
height: 300px;
margin: 500px auto 0px;
border: 1px solid black;
}
</style>
</head>
<body>
<div id="bg">
<div id="blue" onmousedown="redmove('blue')"></div>
<div id="green" onmousedown="redmove('green')"></div>
<div id="red" onmousedown="redmove('red')"></div>
</div>
<div id="textblock">
<input id="inputtext" type="text" placeholder="请输入">
<input id='submit' type="submit" value="提交">
<p id="type"></p>
<p id="title"></p>
<p id="result"></p>
</div>
</body>
</html>
<script>
var zindex = 1000;
function redmove(title){
console.log(event);
var orgin_x = event.screenX;
var orgin_y = event.screenY;
var red = document.getElementById(title);
red.style.zIndex = zindex;
zindex++;
function func1(){
var new_x = event.screenX;
var new_y = event.screenY;
var x = new_x - orgin_x;
var y = new_y - orgin_y
var red_x = red.offsetLeft;
var red_y = red.offsetTop;
// console.log(x);
// console.log(y);
console.log(red_x + x);
console.log(red_y + y);
red.style.left = red_x + x +'px';
red.style.top = red_y + y +'px';
orgin_x = new_x;
orgin_y = new_y;
}
red.addEventListener('mousemove',func1 );
red.addEventListener('mouseup',function(){
red.removeEventListener('mousemove', func1)
} );
}

var submit = document.getElementById('submit');
var text = document.getElementById('inputtext');
console.log(submit);
submit.addEventListener('click', function(){
    var value = text.value;
    var fullpath = 'http://api.tianapi.com/txapi/dream/';
    $.get(fullpath, {key:'772a81a51ae5c780251b1f98ea431b84',word:value}, function(result){
        console.log(result);
        var p = document.getElementById('type');
        p.innerText = result['newslist'][0]['type']
        $('#title').text(result['newslist'][0]['title']);
        $('#result').html(result['newslist'][0]['result']);
        // text.value = '';
        $('#inputtext').val('');
    }, 'json')
})

</script>

相关文章

  • 02.14作业

    *{margin: 0px;padding: 0px;}#bg{widt...

  • 《艾滋病感染与发病机制》读书笔记

    2015.02.12—02.14

  • 2022.01.15-02.14英语学习

    2022.01.15-02.14英语学习 记录学习。 01.15-02.14学习情况,1.16流利说16分钟。 ●...

  • 2020-01-18

    蛇19 虎10.22 狗02.14

  • 02.14

    凯爷在等我们出来看电影的时候遇到峰哥了,结果看完电影之后咋个都不愿意一起再去见峰哥 出门之前我妈一直说不要急慢慢开...

  • 02.14 Ajax

    什么是Ajax A - asynhronous ja - javascript x - xml(异步js+xml)...

  • 02.14 pursue

    1) 翻译:人们不应该以牺牲他人为代价来追求自己的幸福。 People should not pursue the...

  • Mean 02.14

    1 意思是… 意味着…/产生…后果 2 月光族 The meager salary 3 当Mean 表示产生…后果...

  • 随想一02.14

    一觉醒来,己近中午,每天早晨写东西的习惯被打破,备感惭愧,我就是这么的懒散堕落,二十几岁的青壮年看起来活似七老八十...

  • 02.14复盘

    今天我做了什么? 1.听书(饮食术) 很庆幸,在2021年接触到断糖(少糖)饮食,并在今年践行,一年不喝饮料,少吃...

网友评论

      本文标题:02.14作业

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