html鼠标移动到超链接上时,显示图片的效果怎么做的?

html鼠标移动到超链接上时,显示图片的效果怎么做的?,第1张

需要准备的材料分别有:电脑、浏览器、html编辑器

1、首先,打开html编辑器,新建html文件,例如:index.html,输入问题基础代码。

2、在index.html中的<script>标签中,输入js代码:

$('a').hover(function () {$('img').css('display', 'block')})

3、浏览器运行index.html页面,此时鼠标移动到超链接上,下面的图片自动显示了出来。

这是MM你给的网站上那个效果的核心CSS样式部分

.miss1 {

font-family: "Courier New", Courier, monospace

font-size: 14px

font-weight: bold

text-transform: capitalize

color: #3F3F41

letter-spacing: 4px

border-left-width: 4px

border-left-style: double

border-left-color: #A41C1C

left: 2px

padding-left: 3px

background-color:#000

}

a:link {

color: #9CAFA9text-decoration: none

}

a:hover {

color: #FF0000

text-decoration: none

position: relative

height: 0

filter:blur Alpha(Opacity=90, FinishOpacity=40, Style=2)

font-family: "Courier New", Courier, monospace

}

a:visited {

color: #888888text-decoration: none

}

a:active {

color: #A0AFACtext-decoration: none

}

我试了试,没成功就是了╮(╯▽╰)╭

鼠标滑过的关键字是a:hover

字体模糊的关键字是filter:blur Alpha(Opacity=90, FinishOpacity=40, Style=2)

这个是IE专有滤镜效果


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/6309499.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-20
下一篇 2023-03-20

发表评论

登录后才能评论

评论列表(0条)

保存