如何让嵌入部门在开始时不播放音频
How to get an embed division to not play audio on start
您好,我有以下代码运行我的网站主页,但每当我启动网站时,嵌入部分的音频开始播放并破坏了网站的效果,所以我想知道是否有任何我可以放入嵌入标签中的属性,使其在开始时不播放音频,或者是否有任何其他您知道的解决此问题的方法?
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="Images/favicon-16x16.png" type="image/png">
<title>Web Portfolio: Patrick White's Index Page</title>
<style>
body {
font-size: 1.1em;
font-weight: bold;
font-family: Century Gothic, Sans-serif;
color: #02849D; /*dark navy blue*/
text-align: left;
/*Personal Addition*/
background-image: url("Images/Black_Rainbow.jpg");
background-size: 1900px 1400px;
background-repeat: no-repeat;
}
h1 {
font-size: 1.8em;
font-weight: bold;
color: #02849D;
text-align: center;
}
a:link {
color: #31AEC5;
}
a:visited {
color: #015261;
}
a:hover {
color: #505050;
}
#divembed {
float: right
}
.button {
background-color: #707070; /*grey*/
border: none;
color: #02849D; /*bright blue*/
width: 450px;
height: 75px;
text-align: center;
line-height: 75px; /*centers the text vertically*/
text-decoration: none;
display: inline-block;
font-size: 1.1em;
font-family: Century Gothic;
font-weight: bold;
}
</style>
</head>
<body>
<div>
<a href="#main">Skip to main content</a>
</div>
<h1>Patrick White Web Portfolio</h1>
<div id="divembed">
<a href="http://www.gamesembedcode.com/2011/07/tennis-flash-game.html"></a>
<embed src="http://www.freegaming.de/components/flash/7196382252.swf?affiliate_id=941efa0f97e566c4" quality="high" bgcolor="#e8ffff" width="480" height="480" menu="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">
</div>
<div>
<ul>
<li>Patrick White</li>
<li><a href="mailto:TotallyRealEmail@GOATS.com">TotallyRealEmail@GOATS.com</a></li>
<li>843-653-3474</li>
<li>link to one of my favourite <a href="http://eelslap.com/" target="_blank">websites</a></li>
<li>If you like goats, download my presentation! In either: <a href="Images/GOATS.pdf" download>PDF</a>, <a href="Images/GOATS_VIDEO.wmv" download>Video</a>, <a href="Images/GOATS.odp">Open Office</a> or <a href="Images/GOATS.ppt">Microsoft Powerpoint</a></li>
</ul>
</div>
<div>
<ul>
<li>I.T. 9 (1-2)</li>
<li>Mr. Gabriel Jones</li>
<li>Web Design</li>
<li><a href ="http://go.vsb.bc.ca/schools/pointgrey/Pages/Default.aspx" target="_blank">Point Grey Secondary</a>, 2016-2017</li>
</ul>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="Accesibility.html">Accessibility</a></li>
<li><a href="Usability.html">Usability</a></li>
<li><a href="Graphics.html">Graphics</a></li>
<li><a href="JavaScript.html">JavaScript</a></li>
<li><a href="Tools.html">Tools</a></li>
<li><a href="Video.html">Video</a></li>
</ul>
</nav>
<main id="main">
<p>This web portfolio includes examples of my works in Mr. Jones' Web Design class. It also includes my reflections (below) in what I learned with each unit of the course.</p>
<h2>Unit 2</h2>
<p>In this section, I learned the basics of a fundamental scripting language for website design; <i>HTML5</i>. I learned about some of the many tags that are useful in the design of websites that will assist me in my prospective career in web design. In this unit I was presented with many resources to ensure that my HTML code was formatted correctly and was error-free, in the form of online generators. We also learned a great deal about how to incorporate links and images into our file, of which I found particularly interesting. In this section we learned a lot about how to input the actual content of our websites, and I am very excited for the future units in which we get to further design this content to seem visually appealing.</p>
<h2>Unit 3</h2>
<p>This section will be completed soon</p>
<h2>Unit 4</h2>
<p>This section will be completed soon</p>
<h2>Unit 5</h2>
<p>This section will be completed soon</p>
<h2>Unit 6</h2>
<p>This section will be completed soon</p>
<h2>Unit 7</h2>
<p>This section will be completed soon</p>
</main>
<a href="http://www.coolmath-games.com/0-me-and-the-key" target="blank" class="button">Click to Play One of My Favourite Games!</a>
</body>
</html>
除非您可以访问 SWF 源代码,否则这似乎是不可能的,至少根据这个带有损坏的 link 到 adobe 的旧答案:Disabling sound of embedded flash object with html。如果这是您的游戏,我强烈建议您在此处而不是在页面中进行调整。更改源代码(或要求开发人员这样做)是最受推荐的解决方案。
出现的大部分内容是建议用户使用浏览器扩展将页面中的音频静音,如果您没有源代码但致力于包含游戏,则可以推荐这些内容。本文涵盖 Chrome、Firefox 和 Opera:http://www.makeuseof.com/tag/mute-sound-webpages-embedded-audio-flash/
这可能是我发现的关于该主题的最深入的交流:https://www.experts-exchange.com/questions/26480933/Ho-to-disable-audio-of-the-SWF-file-in-Java-Script-HTML.html。建议指定不同的播放器可能会让您成功将 "volume" 参数更改为“0”或将 "mute" 参数更改为 "true"。我不能说他们为您推荐的球员的功效,但他们包括在最后 link.
最后那个人还包含一个 "autoplay" 参数,在他的示例中该参数设置为 "false"。我认为这可能无法解决您的问题,因为即使包括在内他也有类似的麻烦,但尝试它不会有什么坏处。
您好,我有以下代码运行我的网站主页,但每当我启动网站时,嵌入部分的音频开始播放并破坏了网站的效果,所以我想知道是否有任何我可以放入嵌入标签中的属性,使其在开始时不播放音频,或者是否有任何其他您知道的解决此问题的方法?
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="Images/favicon-16x16.png" type="image/png">
<title>Web Portfolio: Patrick White's Index Page</title>
<style>
body {
font-size: 1.1em;
font-weight: bold;
font-family: Century Gothic, Sans-serif;
color: #02849D; /*dark navy blue*/
text-align: left;
/*Personal Addition*/
background-image: url("Images/Black_Rainbow.jpg");
background-size: 1900px 1400px;
background-repeat: no-repeat;
}
h1 {
font-size: 1.8em;
font-weight: bold;
color: #02849D;
text-align: center;
}
a:link {
color: #31AEC5;
}
a:visited {
color: #015261;
}
a:hover {
color: #505050;
}
#divembed {
float: right
}
.button {
background-color: #707070; /*grey*/
border: none;
color: #02849D; /*bright blue*/
width: 450px;
height: 75px;
text-align: center;
line-height: 75px; /*centers the text vertically*/
text-decoration: none;
display: inline-block;
font-size: 1.1em;
font-family: Century Gothic;
font-weight: bold;
}
</style>
</head>
<body>
<div>
<a href="#main">Skip to main content</a>
</div>
<h1>Patrick White Web Portfolio</h1>
<div id="divembed">
<a href="http://www.gamesembedcode.com/2011/07/tennis-flash-game.html"></a>
<embed src="http://www.freegaming.de/components/flash/7196382252.swf?affiliate_id=941efa0f97e566c4" quality="high" bgcolor="#e8ffff" width="480" height="480" menu="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">
</div>
<div>
<ul>
<li>Patrick White</li>
<li><a href="mailto:TotallyRealEmail@GOATS.com">TotallyRealEmail@GOATS.com</a></li>
<li>843-653-3474</li>
<li>link to one of my favourite <a href="http://eelslap.com/" target="_blank">websites</a></li>
<li>If you like goats, download my presentation! In either: <a href="Images/GOATS.pdf" download>PDF</a>, <a href="Images/GOATS_VIDEO.wmv" download>Video</a>, <a href="Images/GOATS.odp">Open Office</a> or <a href="Images/GOATS.ppt">Microsoft Powerpoint</a></li>
</ul>
</div>
<div>
<ul>
<li>I.T. 9 (1-2)</li>
<li>Mr. Gabriel Jones</li>
<li>Web Design</li>
<li><a href ="http://go.vsb.bc.ca/schools/pointgrey/Pages/Default.aspx" target="_blank">Point Grey Secondary</a>, 2016-2017</li>
</ul>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="Accesibility.html">Accessibility</a></li>
<li><a href="Usability.html">Usability</a></li>
<li><a href="Graphics.html">Graphics</a></li>
<li><a href="JavaScript.html">JavaScript</a></li>
<li><a href="Tools.html">Tools</a></li>
<li><a href="Video.html">Video</a></li>
</ul>
</nav>
<main id="main">
<p>This web portfolio includes examples of my works in Mr. Jones' Web Design class. It also includes my reflections (below) in what I learned with each unit of the course.</p>
<h2>Unit 2</h2>
<p>In this section, I learned the basics of a fundamental scripting language for website design; <i>HTML5</i>. I learned about some of the many tags that are useful in the design of websites that will assist me in my prospective career in web design. In this unit I was presented with many resources to ensure that my HTML code was formatted correctly and was error-free, in the form of online generators. We also learned a great deal about how to incorporate links and images into our file, of which I found particularly interesting. In this section we learned a lot about how to input the actual content of our websites, and I am very excited for the future units in which we get to further design this content to seem visually appealing.</p>
<h2>Unit 3</h2>
<p>This section will be completed soon</p>
<h2>Unit 4</h2>
<p>This section will be completed soon</p>
<h2>Unit 5</h2>
<p>This section will be completed soon</p>
<h2>Unit 6</h2>
<p>This section will be completed soon</p>
<h2>Unit 7</h2>
<p>This section will be completed soon</p>
</main>
<a href="http://www.coolmath-games.com/0-me-and-the-key" target="blank" class="button">Click to Play One of My Favourite Games!</a>
</body>
</html>
除非您可以访问 SWF 源代码,否则这似乎是不可能的,至少根据这个带有损坏的 link 到 adobe 的旧答案:Disabling sound of embedded flash object with html。如果这是您的游戏,我强烈建议您在此处而不是在页面中进行调整。更改源代码(或要求开发人员这样做)是最受推荐的解决方案。
出现的大部分内容是建议用户使用浏览器扩展将页面中的音频静音,如果您没有源代码但致力于包含游戏,则可以推荐这些内容。本文涵盖 Chrome、Firefox 和 Opera:http://www.makeuseof.com/tag/mute-sound-webpages-embedded-audio-flash/
这可能是我发现的关于该主题的最深入的交流:https://www.experts-exchange.com/questions/26480933/Ho-to-disable-audio-of-the-SWF-file-in-Java-Script-HTML.html。建议指定不同的播放器可能会让您成功将 "volume" 参数更改为“0”或将 "mute" 参数更改为 "true"。我不能说他们为您推荐的球员的功效,但他们包括在最后 link.
最后那个人还包含一个 "autoplay" 参数,在他的示例中该参数设置为 "false"。我认为这可能无法解决您的问题,因为即使包括在内他也有类似的麻烦,但尝试它不会有什么坏处。