使用 jQuery 在文本上添加阴影
我正在工作的网站的主页上有一条文字。文本可以使用 CMS 进行更改和控制,因此是可变的。我可以选择哪些选项来为该文本添加阴影?我使用 this 示例找到了部分解决方案。这并不完全给我我正在寻找的东西。我看到正在创建阴影,但它与文本不内联。
这就是我使用 dropshadow 插件的方式;
$("#intro-tekst").dropShadow({
left: 0,
top: 0,
opacity: 0.8,
blur: 2
});
这是我正在处理的页面部分应用的CSS;
#intro-tekst
{
color : #FFF;
float : right;
margin-top : 130px;
width : 730px;
text-align : center;
font-size : 22px;
}
#intro-tekst > h1
{
text-transform : uppercase;
padding : 0px 0px 0px 0px;
margin : 0px 25px 0px 0px;
/*font-weight : bold !important;*/
}
我正在使用的 html 如下所示;
<div id="intro-tekst" id="Introductie">
<h1>Stijlvol in het nieuwe jaar!</h1>
Naar de mooiste looks!
</div>
我在创建这个投影时做错了什么吗?或者还有其他解决方案吗?这里需要注意的一件事是我使用 Cufon 来设置文本样式。我知道可以使用 css3 来完成,但我需要 IE7+、FF、Chrome 和 Safari 支持该网站,据我所知,如果不使用 javscript,这是无法完成的。
I've got a text on the homepage of an website i'm working on. The text can be changed an controlled using an CMS and thus is variable. What are my options of getting an dropshadow on this text? I've found an partial solution using this example. This doesn't exactly give me what i'm looking for. I see an shadow being created but it's not inline with the text.
This is how I used the dropshadow plugin;
$("#intro-tekst").dropShadow({
left: 0,
top: 0,
opacity: 0.8,
blur: 2
});
And this is the applied css to the part of the page i'm working on;
#intro-tekst
{
color : #FFF;
float : right;
margin-top : 130px;
width : 730px;
text-align : center;
font-size : 22px;
}
#intro-tekst > h1
{
text-transform : uppercase;
padding : 0px 0px 0px 0px;
margin : 0px 25px 0px 0px;
/*font-weight : bold !important;*/
}
The html i'm working with looks as following;
<div id="intro-tekst" id="Introductie">
<h1>Stijlvol in het nieuwe jaar!</h1>
Naar de mooiste looks!
</div>
Am I doing something wrong while creating this dropshadow? Or are the other solution available? One thing to note here that i'm using Cufon to style the text. I know it can be done with css3 but I need the website to be supported in IE7+, FF, Chrome and Safari and as far as I know this can't be done without using javscript.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
到这里创建你想要的任何内容,它最多会自动生成跨浏览器CSS
http://css3generator.com/
所有 D 最好的:)
Go here and create whatever you want, it will auto generate cross-browser css at best
http://css3generator.com/
ALL D BEST :)
如果您已经在所有字体中使用 Cufon,那么最简单的方法可能是利用 Cufon 自己的样式 支持 text-shadow
显示更详细的示例 这里。
If you are already using Cufon for all your fonts then the easist thing is porbably to leverage Cufon's own styling support for text-shadow
A more elaborate example is shown here.
?在 1 个 div 中设置 2 个 id 标签?
? setting 2 id tags in 1 div?