求制作网页中能实现页面上随意拉动图片的代码?
答案:2 悬赏:60 手机版
解决时间 2021-05-06 07:37
- 提问者网友:且恨且铭记
- 2021-05-06 03:16
求制作网页中能实现页面上随意拉动图片的代码? 就像我们桌面图标一样能拉动。。。谢谢了
最佳答案
- 五星知识达人网友:北方的南先生
- 2021-05-06 04:12
<html>
<head>
<title>网页特效||---能用鼠标拖放的图片</title>
</head><body onload="init()">
<!--用<body onload="init()">替换原来的<body>-->
<!--将以下代码加入HTML的<Body></Body>之间-->
<SCRIPT language=JavaScript>
<!--
drag = 0
move = 0
function init() {
window.document.onmousemove = mouseMove
window.document.onmousedown = mouseDown
window.document.onmouseup = mouseUp
window.document.ondragstart = mouseStop
}
function mouseDown() {
if (drag) {
clickleft = window.event.x - parseInt(dragObj.style.left)
clicktop = window.event.y - parseInt(dragObj.style.top)
dragObj.style.zIndex += 1
move = 1
}
}
function mouseStop() {
window.event.returnValue = false
}
function mouseMove() {
if (move) {
dragObj.style.left = window.event.x - clickleft
dragObj.style.top = window.event.y - clicktop
}
}
function mouseUp() {
move = 0
}
//-->
</SCRIPT>
<DIV id=block1 onmouseout=drag=0 onmouseover="dragObj=block1; drag=1;"
>
<IMG
border=0
src=" http://www.baidu.com/img/baidu_logo.gif" border="0" width="85" height="55">
</body></html>
<head>
<title>网页特效||---能用鼠标拖放的图片</title>
</head><body onload="init()">
<!--用<body onload="init()">替换原来的<body>-->
<!--将以下代码加入HTML的<Body></Body>之间-->
<SCRIPT language=JavaScript>
<!--
drag = 0
move = 0
function init() {
window.document.onmousemove = mouseMove
window.document.onmousedown = mouseDown
window.document.onmouseup = mouseUp
window.document.ondragstart = mouseStop
}
function mouseDown() {
if (drag) {
clickleft = window.event.x - parseInt(dragObj.style.left)
clicktop = window.event.y - parseInt(dragObj.style.top)
dragObj.style.zIndex += 1
move = 1
}
}
function mouseStop() {
window.event.returnValue = false
}
function mouseMove() {
if (move) {
dragObj.style.left = window.event.x - clickleft
dragObj.style.top = window.event.y - clicktop
}
}
function mouseUp() {
move = 0
}
//-->
</SCRIPT>
<DIV id=block1 onmouseout=drag=0 onmouseover="dragObj=block1; drag=1;"
>
<IMG
border=0
src=" http://www.baidu.com/img/baidu_logo.gif" border="0" width="85" height="55">
</body></html>
全部回答
- 1楼网友:玩家
- 2021-05-06 05:19
$image="./img/image1.gif";//指定要显示的图片
if(file_exist($image)){
if(exif_imagetype($image)){
echo "<image src=$image>";//显示图片
}
}
先用file_exist()函数判断图片文件是否存在
如果存在则进一步判断该文件是否常规图片文件
如果是则输出显示图片的HTML代码
如果不存在则不输出任何信息
当然,前提是你要对$image变量赋值,而这个值必需是你要显示的图片的路径及文件名,反正思路就这样了,具体实现方法就看你PHP的功底了
======================
也可以这么简单:
$image="./img/image1.gif";//指定要显示的图片
if(file_exist($image)&&exif_imagetype($image)){
echo "<image src=$image>";//显示图片
}
这段的意思是当指定的文件存在且这个文件是常规图片文件则输出显示图片的HTML代码
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯